加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

tableView调用reloadData不刷新, cellForRowAtIndexPath方法不走

(2015-10-28 14:43:40)
标签:

ios

it

raloaddata

分类: OC
记录一下蛋疼的bug.

我用AFNetworking 做网络请求,回调成功后 执行[self.tableView reloadData] 二次刷新界面;  但是numberOfRows走,cellForRowAtIndexPath 方法却不走了.

stackOverFlow上说在主线程刷新界面就好了,这样:
         dispatch_sync(dispatch_get_main_queue(), ^{
             [self.tableView reloadData];
         });
我这样写程序直接假死了.

之后继续尝试以下方法, 依然无法刷新:
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];  
 [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];

甚至拿到cell直接赋值都不行.

         ChatListCell *cell = (ChatListCell *)[self.tableViewcellForRowAtIndexPath:indexPath];

         

         if (model.avatar)

         {

             cell.imageURL kImageURLWith(model.avatar);

         }

         if (model.user_nicename)

         {

             cell.name = model.user_nicename;

         }

一度无语,觉得只能用调[self viewDidLoad]  刷新界面了. 同时猜测可能是self.tableview的创建有问题.

本来的tableview是通过懒加载创建的的:

- (UITableView *)tableView

 {

    if (_tableView == nil) {

        _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStylePlain];

          _tableView.delegate self;

        _tableView.dataSource self;

 }

return _tableView;

}

然后  [self.view addSubview:self.tableview] 添加到视图上;


最后尝试了下改成下边的就好了,创建视图的时候就添加.原因未知,其他地方保持上边的写法并没有问题:

- (UITableView *)tableView

 {

    if (_tableView == nil) {

        _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStylePlain];

          _tableView.delegate self;

         _tableView.dataSource self;

 [self.view addSubview:_tableView];

 }

 return _tableView;

}


 


0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有