欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

tabelview刷新不能及时问题

程序员文章站 2022-07-10 18:14:23
...

线程:This application is modifying the autolayout engin from a background thread

    This application is modifying the autolayout engin from a background thread,which can lead to engine corruption and weird crashes,This will cause an exception in a future rellease   
    避开了主线开辟了一个线程去读取数据,拿到数据后直接去更新数据,而不是代码回到主线程中去更新数据

tabelview刷新不能及时问题

在处理数据的地方需要调用主线程
dispatch_async(dispatch_get_main_queue(), ^{
});
tabelview刷新不能及时问题