我正在尝试从 Facebook 读取好友列表并在 TableView 中显示,但我没有任何反应。我的代表的代码和平:
if (![facebook isSessionValid]) {
NSArray *permissions = [[NSArray alloc] initWithObjects:
@"user_location",
@"friends_location",
@"read_friendlists",
nil];
[facebook authorize:permissions];
[permissions release];
}
[facebook requestWithGraphPath:@"me/friends" andDelegate:self];
request:didLoad
方法看起来像:
-(void)request:(FBRequest *)request didLoad:(id)result {
_contacts = result;
}
contacts
这是我的实例 NSArray 我想用来自 Facebook 的联系人填充。在tableViewController
我做了接下来的事情:
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
cell.textLabel.text = [appDelegate.contacts objectAtIndex:indexPath.row];
结果我的tableView中没有任何东西。我对我做错了什么感兴趣?我通常以正确的方式做吗?