Skip to content

Instantly share code, notes, and snippets.

@Bensge
Created August 19, 2014 19:47
Show Gist options
  • Save Bensge/a26e5c645580f5cf64db to your computer and use it in GitHub Desktop.
Save Bensge/a26e5c645580f5cf64db to your computer and use it in GitHub Desktop.
Macro for short main thread dispatch in Objective-C
#define DISMAIN( CODE ) \
do { \
dispatch_sync(dispatch_get_main_queue(), ^{ \
CODE \
}); \
} while (0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment