Skip to content

Instantly share code, notes, and snippets.

@jacksonh
Created April 22, 2014 14:27
Show Gist options
  • Save jacksonh/11181299 to your computer and use it in GitHub Desktop.
Save jacksonh/11181299 to your computer and use it in GitHub Desktop.
int main(int argc, char* argv[])
{
@autoreleasepool {
@try {
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
return retVal; }
@catch (NSException *exception) {
NSLog (@"UNHANDLED EXCEPTION:\n%@", exception);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment