我正在使用FBFriendPickerViewController在我的iOS应用中显示要邀请的朋友列表。
它仅显示已安装该应用的朋友列表。这是为什么?
我还在我的应用中直接与Facebook sdk进行交互,以便使用Graph API。这会干扰吗?我打开一个具有权限的会话:public_profile,user_friends friends_games_activity,publish_actions。
该应用程序在Facebook开发人员中心处于开发模式。
以下是我展示选择器的代码:
FBFriendPickerViewController *friendPickerController =
[[FBFriendPickerViewController alloc] init];
friendPickerController.title = @"Pick Friends";
// Load the friend data
[friendPickerController loadData];
// Show the picker modally
[friendPickerController presentModallyFromViewController:self animated:YES handler:nil];