我有三个班级,我只是在 tableView 中显示我的 Facebook 朋友。我成功地在friendArray中获得了我所有朋友的名字。我必须在 FriendList 类中显示朋友的名字。
1)RootViewController类
2)FriendList 类
3)Facebook互动课
我的问题是:
我的 FriendList 类在获取(解析)完成之前加载。并且在我的数组中,friendArray 计数为 0。(因为(获取)解析未完成)。在我的控制台数组计数是 150。
friendListObject.friendArray = parsedArray; // where get data
-(void)butoonClicked
{
FBFeedPost *post = [[FBFeedPost alloc]initWithFriendList:self.imageView.image];
[post publishPostWithDelegate:self];
FriendList *friendList=[[FriendList alloc]initWithNibName:@"FriendList" bundle:[NSBundle mainBundle]];
[[self navigationController] pushViewController:friendList animated:YES];
}