iOS GCD子线程调用主线程刷新

    __weak __typeof(self) weakself= self;

    dispatch_async(dispatch_queue_create(0, 0), ^{

        // 子线程执行任务(比如获取较大数据)

        dispatch_async(dispatch_get_main_queue(), ^{

         // 通知主线程刷新 神马的

        });

    });

你可能感兴趣的:(iOS GCD子线程调用主线程刷新)