__weak __typeof(self) weakself= self;
dispatch_async(dispatch_queue_create(0, 0), ^{
// 子线程执行任务(比如获取较大数据)
dispatch_async(dispatch_get_main_queue(), ^{
// 通知主线程刷新 神马的
});
});
__weak __typeof(self) weakself= self;
dispatch_async(dispatch_queue_create(0, 0), ^{
// 子线程执行任务(比如获取较大数据)
dispatch_async(dispatch_get_main_queue(), ^{
// 通知主线程刷新 神马的
});
});
本文标题:iOS GCD子线程调用主线程刷新
本文链接:https://www.haomeiwen.com/subject/zopgdftx.html
网友评论