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
Facebookからの連絡先を入力したいのは私のインスタンスNSArrayです。tableViewController
私は次のことをしました:
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
cell.textLabel.text = [appDelegate.contacts objectAtIndex:indexPath.row];
その結果、tableViewには何もありません。私は自分が間違っていることに興味がありますか?私は一般的に正しい方法でやっていますか?