reloadData should be in main thread

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.


原文地址:https://www.cnblogs.com/keanuyaoo/p/3271053.html