Come posso fare in modo che il mio codice attenda fino al termine dell'attività in DispatchQueue? Ha bisogno di CompletionHandler o qualcosa del genere?
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
}
Sto usando Xcode 8.2 e scrivo in Swift 3.