リストの友達facebookを表示するのに問題があります.FBRequestを使用しています.すでにリストの友達を取得していますが、UITableViewに表示されません.
これが私のコードです:
- (void)viewDidLoad
{
[self.tblView setDataSource:self];
[self.tblView setDelegate:self];
[super viewDidLoad];
[self loadFirst];
_itemsNamesFriend = [[NSMutableArray alloc] init];
if (FBSession.activeSession.isOpen) {
FBRequest *friendRequest = [[FBRequest alloc] initWithSession:FBSession.activeSession graphPath:@"me/friends"];
[friendRequest startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSDictionary *resultDictionary = (NSDictionary *)result;
_itemsNamesFriend = [resultDictionary objectForKey:@"data"];
NSLog(@"%@",_itemsNamesFriend); //--> have data
}];
NSLog(@"%@",_itemsNamesFriend); //--> data is empty
[self.tblView reloadData];
}
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// NSLog(@"%d",_itemsNamesFriend.count);
return _itemsNamesFriend.count;
}