Skip to content

Instantly share code, notes, and snippets.

@coryhymel
Last active August 29, 2015 13:55
Show Gist options
  • Save coryhymel/8789017 to your computer and use it in GitHub Desktop.
Save coryhymel/8789017 to your computer and use it in GitHub Desktop.
Background/Main GCD Block
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