Skip to content

Instantly share code, notes, and snippets.

@thiagoperes
Created June 22, 2012 12:47
Show Gist options
  • Select an option

  • Save thiagoperes/2972563 to your computer and use it in GitHub Desktop.

Select an option

Save thiagoperes/2972563 to your computer and use it in GitHub Desktop.
void uncaughtExceptionHandler(NSException *exception)
{
for (id obj in [exception callStackSymbols])
{
printf("%s\n", [obj UTF8String]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment