iphone中的Facebook好友选择对话框

时间:2010-01-12 01:16:30

标签: iphone facebook

有没有办法让我的iphone原生应用程序显示facebook的朋友选择器对话框?或者我是否必须手动检索用户的朋友并自己创建对话框?

由于

1 个答案:

答案 0 :(得分:0)

在最新的SDK中,您可以使用好友选择器执行此操作。

// Initialize the friend picker
FBFriendPickerViewController *friendPickerController = 
    [[FBFriendPickerViewController alloc] init];
// Set the friend picker title
friendPickerController.title = @"Pick Friends";

// TODO: Set up the delegate to handle picker callbacks, ex: Done/Cancel button

// Load the friend data
[friendPickerController loadData];
// Show the picker modally
[friendPickerController presentModallyFromViewController:self animated:YES handler:nil];

https://developers.facebook.com/ios/friendpicker-ui-control/