首页 > 代码库 > dispatch_apply&dispatch_suspend&dispatch_resume使用
dispatch_apply&dispatch_suspend&dispatch_resume使用
第一、dispatch_apply 是同步函数,会阻塞当前线程直到所有循环迭代执行完成。当提交到并发queue时,循环迭代的执行顺序是不确定的
示例:
dispatch_queue_t queue=dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_apply(10, queue, ^(size_t index) {
NSLog(@"%zu",index);
});
执行结果:
8 1 2 4 5 3 9 0 7 6
因为dispatch_apply会等待处理执行结束,因此推荐在dispatch_asyn函数中执行dispatch_apply
第二、dispatch_suspend挂起指定的dispatch_queue
第三、dispatch_resume恢复指定的dispatch_queue
dispatch_apply&dispatch_suspend&dispatch_resume使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。