摘要:
GCD核心概念: 1,任务和队列。 任务:要做什么 队列:存放任务。 GCD使用步骤: 1,创建队列 2,封装任务,把任务添加到队列中。 封装任务的函数: 同步函数: dispatch_sync 该函数不具备开辟线程的能力,不能开辟线程。 任务执行的方式: 同步 异步函数:dispatch_asyn 阅读全文
摘要:
开辟新的线程: [NSThread detachNewThreadSelector:@selector(download) toTarget:self withObject:nil]; [self performSelectorInBackground:@selector(download) wit 阅读全文