Created
March 18, 2014 08:47
-
-
Save jlcampana/9616071 to your computer and use it in GitHub Desktop.
Background queue dispatch
This file contains hidden or 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
dispatch_queue_t _noFutureQueue; | |
//... | |
_noFutureQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0); | |
dispatch_sync(_noFutureQueue, ^{ | |
//... | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment