如何让代码等到 DispatchQueue 中的任务完成? 它是否需要任何 CompletionHandler 或其他东西?
func myFunction() {
var a: Int?
DispatchQueue.main.async {
var b: Int = 3
a = b
}
// wait until the task finishes, then print
print(a) // - this will contain nil, of course, because it
// will execute before the code above
}
我用的是 Xcode 8.2,用的是 Swift 3。