Created
March 27, 2012 02:01
-
-
Save hollance/2211705 to your computer and use it in GitHub Desktop.
Using GCD to perform a task in the background
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
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^ | |
{ | |
// do stuff here | |
dispatch_async(dispatch_get_main_queue(), ^ | |
{ | |
// do stuff on main thread | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment