A melhor prática é definir uma função reutilizável que possa ser acessada várias vezes.
FUNÇÃO REUTILIZÁVEL:
por exemplo, em algum lugar como AppDelegate.swift como uma função global.
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: em Swift 2.0, substituir QOS_CLASS_USER_INITIATED.value acima com QOS_CLASS_USER_INITIATED.rawValue vez
USO:
A. Para executar um processo em segundo plano com um atraso de 3 segundos:
backgroundThread(3.0, background: {
// Your background function here
})
B. Para executar um processo em segundo plano, execute uma conclusão em primeiro plano:
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. Atraso em 3 segundos - observe o uso do parâmetro de conclusão sem o parâmetro de segundo plano:
backgroundThread(3.0, completion: {
// Your delayed function here to be run in the foreground
})