美文网首页
简单gcd线程使用

简单gcd线程使用

作者: 叶俊谋先生 | 来源:发表于2016-07-28 13:14 被阅读0次

    1. 主队列中的任务就是在主线程执行

    dispatch_sync(dispatch_get_main_queue(), ^{

         [NSThread sleepForTimeInterval:1.0];//让主线程睡一秒

    NSLog(@"更新UI = %@",[NSThread currentThread]);

    });

    2.异步

    dispatch_async(dispatch_get_global_queue(0, 0), ^{

    NSLog(@"下载任务 = %@",[NSThread currentThread]);

    });

    相关文章

      网友评论

          本文标题:简单gcd线程使用

          本文链接:https://www.haomeiwen.com/subject/tnsajttx.html