Look at the downloaded SDK source files (maybe they are installed in the "My Documents" folder). One example source code is called FriendPickerSample.xcodeproj
, , FB iOS Tableview, FPViewController, UIViewController, allowMultipleSelection, , TRUE, , "".
""
- (void)facebookViewControllerDoneWasPressed:(id)sender {
NSMutableString *text = [[NSMutableString alloc] init];
for (id<FBGraphUser> user in self.friendPickerController.selection) {
if ([text length]) {
[text appendString:@", "];
}
[text appendString:user.name];
}
[self fillTextBoxAndDismiss:text.length > 0 ? text : @"<None>"];
}
, , , .