Skip to content

Instantly share code, notes, and snippets.

@daniel-beard
Created January 12, 2013 06:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daniel-beard/4516490 to your computer and use it in GitHub Desktop.
Save daniel-beard/4516490 to your computer and use it in GitHub Desktop.
Background / Foreground async dispatches ios objective-c
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
//background processing goes here
dispatch_async(dispatch_get_main_queue(), ^{
//update UI here
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment