Created
October 23, 2012 00:19
-
-
Save christineyen/3935788 to your computer and use it in GitHub Desktop.
GCD and @try/@catch, for blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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