Skip to content

Instantly share code, notes, and snippets.

@NickHung1982
Created August 21, 2017 17:44
Show Gist options
  • Save NickHung1982/20ddc737a32582caea8e38d173380d8c to your computer and use it in GitHub Desktop.
Save NickHung1982/20ddc737a32582caea8e38d173380d8c to your computer and use it in GitHub Desktop.
DispatchQueue
DispatchQueue.global(qos: .background).async {
//running background
DispatchQueue.main.async {
// Go back to the main thread to update the UI
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment