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.

The FBFriendPickerViewController lets a user select a subset of their facebook friends. I'd like to filter or manipulate that list some. For example, it would be useful if I can somehow highlight which friends already have my application installed.

Anyone have a code snippet which does this?

share|improve this question

1 Answer

From the docs here it states that "The delegate can also be used to filter the friends to display in the picker.". So I would assume that in your Delegate you do something like this:

- (BOOL)friendPickerViewController:(FBFriendPickerViewController *)friendPicker shouldIncludeUser:(id<FBGraphUser>)user
{ 
    if ([myArrayOfValidUsers containsObject:user])
        return YES;

    return NO;
}
share|improve this answer

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.