Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know how to get all people from the address book with ABAddressBookCopyArrayOfAllPeople() but how do I get a list of the different groups and more specifically how to I get contacts from a certain group.

I tried my luck with kABGroupNameProperty but that did not return group names - instead some often (null) and some times first names.

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

I think this is what you want:

CFArrayRef groups = ABAddressBookCopyArrayOfAllGroups(addressBook);
int count = ABAddressBookGetGroupCount(addressBook);
for (int i = 0; i < count; i++) {
    ABRecordRef group = CFArrayGetValueAtIndex(groups, i);
    NSString *name = (__bridge NSString *)(ABRecordCopyValue(group, kABGroupNameProperty));
    if ([name isEqualToString:@"name of group you're looking for"]) {
        CFArrayRef people = ABGroupCopyArrayOfAllMembers(group);
        // do something with people in group
    }
}
share|improve this answer
Hey I have similar requirement, but the group count in my case is coming as -1. Any ideas on this? – Sagrian Mar 7 at 6:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.