2019年2月16日
摘要: GCD核心概念: 1,任务和队列。 任务:要做什么 队列:存放任务。 GCD使用步骤: 1,创建队列 2,封装任务,把任务添加到队列中。 封装任务的函数: 同步函数: dispatch_sync 该函数不具备开辟线程的能力,不能开辟线程。 任务执行的方式: 同步 异步函数:dispatch_asyn 阅读全文
posted @ 2019-02-16 21:24 大圣ios博客 阅读(628) 评论(0) 推荐(0) 编辑
摘要: 开辟新的线程: [NSThread detachNewThreadSelector:@selector(download) toTarget:self withObject:nil]; [self performSelectorInBackground:@selector(download) wit 阅读全文
posted @ 2019-02-16 20:27 大圣ios博客 阅读(87) 评论(0) 推荐(0) 编辑