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'm using the FBFriendPickerViewController to show all my friends, and then when i select one (multipleselection disabled) i want to get his name and username.

Could someone explain me why the name of the user returns right and the username returns null?

- (void)facebookViewControllerDoneWasPressed:(id)sender {
    for (id<FBGraphUser> friend in self.friendPickerController.selection) {
        NSLog(@"%@", friend.name);
        NSLog(@"%@", friend.username);
    }
}

Which is the best way to retrieve my friends username?

Thanks!

share|improve this question

1 Answer

Try using the following:

- (BOOL)friendPickerViewController:(FBFriendPickerViewController *)friendPicker
                 shouldIncludeUser:(id<FBGraphUser>)user
{
    if (self.searchText && ![self.searchText isEqualToString:@""]) {
        NSRange result = [user.name
                          rangeOfString:self.searchText
                          options:NSCaseInsensitiveSearch];
        if (result.location != NSNotFound) {
            return YES;
        } else {
            return NO;
        }
    } else {
        return YES;
    }
    return YES;
}
share|improve this answer
1  
I think you misunderstood the question, i don't want a search. I want to retrieve the username of the friend selected on the picker. – Guilherme Miranda Jan 18 at 0:25

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.