iOS TableView reloadData结束

有时候我们需要知道tableview何时刷新结束,来做一些相关的操作,那么如何得知reloadData结束呢?

看代码:

BOOL _reloadFinished = NO;
[tableView reload]; //这里会自动设置tableView layoutIfNeeded为YES,意味着将会在runloop结束时重绘tableView,并将重绘任务提交到主队列
dispatch_async(dispatch_get_main_queue(),^{
    _reloadFinished = YES;//由于mainQueue是串行的,执行到这里说明上一个提交到mainQueue的task已经完成了(即tableView重绘)
});

参考链接:

http://www.cocoachina.com/bbs/read.php?tid-310407-page-3.html

http://stackoverflow.com/questions/16071503/how-to-tell-when-uitableview-has-completed-reloaddata



你可能感兴趣的:(iOS TableView reloadData结束)