码迷,mamicode.com
首页 > 编程语言 > 详细

如何让UITableView加载完成后更新UI回到主线程

时间:2016-06-13 15:18:11      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:

tableView加载完毕后回调的delegate方法: -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){ //end of loading //for example [activityIndicator stopAnimating]; } } ++++++++++++++++++++++++++++++++++++++ 由于willDisplayCell是异步调用的,所以在上面的block里面不能即时更新UI,最好使用GCD通过主线程加上你的代码: -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){ //end of loading dispatch_async(dispatch_get_main_queue,^{ //for example [activityIndicator stopAnimating]; }); } }

如何让UITableView加载完成后更新UI回到主线程

标签:

原文地址:http://www.cnblogs.com/duyuiOS/p/5580545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!