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 15:19  chuwachen  阅读(125)  评论(0)    收藏  举报