Last active
January 15, 2017 05:59
-
-
Save jenhausu/3ad2fe7fdbfd39f9f705fac7b5550f37 to your computer and use it in GitHub Desktop.
GCD
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
let queue = DispatchQueue(label: "labelName", qos: .userInteractive, attributes: .concurrent) |
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
queue.sync { | |
} | |
queue.async { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment