风言枫语  

reloadData should be called in main thread, so if you call it in work thread, you should call it as follows:

 

 

    dispatch_async(dispatch_get_main_queue(), ^{

        [_tableVC.tableView reloadData];

    });

 

otherwise UI refresh will be delayed, but not realtime.


posted on 2013-08-20 20:47  风言枫语  阅读(121)  评论(0编辑  收藏  举报