Skip to content

Instantly share code, notes, and snippets.

@sanketfirodiya
Last active August 29, 2015 14:03
Show Gist options
  • Save sanketfirodiya/e058aef39300be793757 to your computer and use it in GitHub Desktop.
Save sanketfirodiya/e058aef39300be793757 to your computer and use it in GitHub Desktop.
GCD
dispatch_queue_t secondaryQueue = dispatch_queue_create("com.appname.object", NULL);
dispatch_async(secondaryQueue, ^{
// execute code on non-UI thread
dispatch_async(dispatch_get_main_queue(), ^{
// execute code on UI thread
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment