4
我一直在swift3中搜索等效的dispatch_apply。請幫助我Swift 3中的「dispatch_apply」相當於什麼?
轉換
let queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_apply(2, queue) { (index) in
}
我一直在swift3中搜索等效的dispatch_apply。請幫助我Swift 3中的「dispatch_apply」相當於什麼?
轉換
let queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_apply(2, queue) { (index) in
}
你還記得dispatch_apply()。那麼,它仍然在那裏,並得到一個新的名字。從現在開始,你必須調用concurrentPerform()
改變這種
dispatch_apply(2, queue) { (index) in
}
到
DispatchQueue.concurrentPerform(iterations: 2) {
print("\($0). concurrentPerform")
}
'DispatchQueue.concurrentPerform(迭代:' – Khundragpan