-
-
Save rkrishnasanka/6376475 to your computer and use it in GitHub Desktop.
Async operations iOS
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 queue = dispatch_get_global_queue( | |
DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); | |
dispatch_async(queue, ^{ | |
//any thing | |
}); | |
//ref | |
//http://jeffreysambells.com/2013/03/01/asynchronous-operations-in-ios-with-grand-central-dispatch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment