Skip to content

Instantly share code, notes, and snippets.

@jazzychad
Created July 30, 2013 22:34
Show Gist options
  • Save jazzychad/6117689 to your computer and use it in GitHub Desktop.
Save jazzychad/6117689 to your computer and use it in GitHub Desktop.
runOnMainQueue
void runOnMainQueue(dispatch_block_t block)
{
if ([NSThread isMainThread])
{
block();
}
else
{
dispatch_sync(dispatch_get_main_queue(), block);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment