Skip to content

Instantly share code, notes, and snippets.

@christineyen
Created October 23, 2012 00:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christineyen/3935788 to your computer and use it in GitHub Desktop.
Save christineyen/3935788 to your computer and use it in GitHub Desktop.
GCD and @try/@catch, for blog
@try {
dispatch_async(dispatch_get_main_queue(), ^{
[NSException raise:NSGenericException format:@"uncaught exception!"];
});
} @catch (NSException *exception) {
// USELESS
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment