Created
July 3, 2016 10:05
-
-
Save marmelroy/51da3e60ae5d732702783b93c580999d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DispatchQueue.global(attributes: [.qosDefault]).async { | |
// Background thread | |
DispatchQueue.main.async(execute: { | |
// UI Updates | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
.qosBackground is the default global attribute, so if you want bg you can simplify it like this