How can I get all group names that is saved inside the contacts? Below is my code for your reference:
NSMutableArray *list = [NSMutableArray array];
ABAddressBookRef myAddressBook = ABAddressBookCreate();
CFArrayRef allSources = ABAddressBookCopyArrayOfAllGroups(myAddressBook);
list = [NSMutableArray arrayWithArray: (__bridge NSArray*) allSources];
NSLog(@"GROUPS %@",[list objectAtIndex:0]);
The NSLog returns a but I need to get the group name itself.
Thanks.