現在、iOS の facebook api から FBFriendPicker を使用して、選択した友達の名前を取得しています。同時に友人のユーザー ID を取得する方法を教えてください。名前には以下の関数を使用します。
// Facebook integration
- (void)facebookViewControllerDoneWasPressed:(id)sender {
NSString *text;
// we pick up the users from the selection, and create a string that we use to update the text view
// at the bottom of the display; note that self.selection is a property inherited from our base class
for (id<FBGraphUser> user in self.friendPickerController.selection) {
self.name.text = user.name;
}
[self dismissModalViewControllerAnimated:YES];
}