gpt4 book ai didi

iphone - 调用了 numberOfRowsInSection 但未调用 cellForRowAtIndexPath

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:17 25 4
gpt4 key购买 nike

在我的 tableView 中 numberOfRowsInSection 被调用了两次但是 cellForRowAtIndexPath 没有被调用?我想在 tableView 中显示 Facebook 好友列表(如果 cellForRowAtIndexPath 调用我的问题已解决)。

我在这里的数组中得到了正确的值,但第一次调用表方法时,因为 friend 列表的解析未完成,它不会转到 cellForRowAtIndexPath,但下次我重新加载数据时,它显示值 194(我在 facebood 上的 friend )在 numberOfRowsInSection 中,但仍然没有进入 cellForRowAtIndexPath。我对这个问题很厌烦?

@implement RootViewController


//In this view i do two things. First use FBFeedPost to Fetch the Friend List from Facebook and Second navigate to FBFriends view



FBFeedPost *post = [[FBFeedPost alloc]initWithFriendList:self.imageView.image];
[post publishPostWithDelegate:self];


FBFriends *friendList=[[FBFriends alloc]initWithNibName:@"FBFriends" bundle:[NSBundle mainBundle]];
[[self navigationController] pushViewController:friendList animated:YES];

@end


@implement FBFeedPost

//After parsing friends list i pass Array to a FBFriend class function

FBFriends *obj1=[[FBFriends alloc]init];
[obj1 getFreindName:nameItems];

@end



@implement FBFriends


-(void)getFreindName:(NSMutableArray *)friendName
{
friendsArray=friendName;

NSLog(@"the count of name is %d",[friendsArray count]);// here i get right answer.

[self.tableView reloadData];

}


@end

最佳答案

@Stack.Blue:好的,你为tableView使用了什么属性??使用@property(nonatomic,retain)UITableView *tableView;或者下一个选项是您可以尝试在 viewWillAppear 方法中添加表格。如果可行,请告诉我。

关于iphone - 调用了 numberOfRowsInSection 但未调用 cellForRowAtIndexPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11256145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com