La migliore pratica è definire una funzione riutilizzabile a cui è possibile accedere più volte.
FUNZIONE RIUTILIZZABILE:
ad esempio da qualche parte come AppDelegate.swift come funzione globale.
func backgroundThread(_ delay: Double = 0.0, background: (() -> Void)? = nil, completion: (() -> Void)? = nil) {
dispatch_async(dispatch_get_global_queue(Int(QOS_CLASS_USER_INITIATED.value), 0)) {
background?()
let popTime = dispatch_time(DISPATCH_TIME_NOW, Int64(delay * Double(NSEC_PER_SEC)))
dispatch_after(popTime, dispatch_get_main_queue()) {
completion?()
}
}
}
Nota: in Swift 2.0, sostituire QOS_CLASS_USER_INITIATED.value sopra con QOS_CLASS_USER_INITIATED.rawValue invece
USO:
A. Per eseguire un processo in background con un ritardo di 3 secondi:
backgroundThread(3.0, background: {
// Your background function here
})
B. Per eseguire un processo in background, quindi eseguire un completamento in primo piano:
backgroundThread(background: {
// Your function here to run in the background
},
completion: {
// A function to run in the foreground when the background thread is complete
})
C. Per ritardare di 3 secondi - notare l'uso del parametro di completamento senza parametro di sfondo:
backgroundThread(3.0, completion: {
// Your delayed function here to be run in the foreground
})