Skip to content

Instantly share code, notes, and snippets.

@YogevSitton-zz
Created April 20, 2017 14:27
Show Gist options
  • Save YogevSitton-zz/b9b1b02ad7507cee0c37f0d375029d32 to your computer and use it in GitHub Desktop.
Save YogevSitton-zz/b9b1b02ad7507cee0c37f0d375029d32 to your computer and use it in GitHub Desktop.
Beware of synchronously running on the main thread from a synchronous background thread
DispatchQueue.global(qos: .utility).sync {
// Background Task
DispatchQueue.main.sync {
// App will crash
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment