How can I get GROUP info from "Addressbook" ?
ABRecordRef ref = CFArrayGetValueAtIndex(allPeople, i);
CFStringRef firstName = ABRecordCopyValue(ref, kABPersonFirstNameProperty);
CFStringRef lastName = ABRecordCopyValue(ref, kABPersonLastNameProperty);
i'm using AddressBook code.
and i'd want to get the group name.
how ? not group cnt, but name...
Last edited by BobbyJeyChoi; 02-20-2010 at 11:32 AM.
|