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.

On MAC platform, the ABPerson class has a parentGroups attribute, which tells us which groups the person belongs to. But On IOS platform, there is no such method or property..

How to find out the parent groups of a person? Do I needs to search through all groups one by one?

Thanks.

share|improve this question
stackoverflow.com/questions/5973510/… is WRONG :) – Daij-Djan Nov 17 '12 at 3:10

1 Answer

up vote 2 down vote accepted

another thread mentioned ABPersonCopyParentGroups -- but this is wrong -n.a. on ios.

there is no api call so doing this directly is needed

ABPersonRef personToFind = ....
ABRecordID id = ABRecordGetRecordID(personToFind);

NSArray *groups = (__bridge_transfer NSArray*)ABAddressBookCopyArrayOfAllGroups(bookRef);
for(ABGroupRef group in groups) {
    NSArray *members = (__bridge_transfer NSArray*)ABGroupCopyAllMembers(group);
    for(ABPersonRef member in members) {
        if(id == ABRecordGetRecordID(member){
            NSLog(@"found in group %@!", ABGroupCopyProperty(group, kABGroupName);
            break;
        }
    }            
}

*typed inline, no guarantees -- there are likely typos!

share|improve this answer
thanks for you code snippets.. :-) – flypig Nov 17 '12 at 5:21

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.