No exception stacktrace in console under Xcode 4.2/iOS 5?

This works: int main(int argc, char *argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retVal = -1; @try { retVal = UIApplicationMain(argc, argv, nil, nil); } @catch (NSException* exception) { NSLog(@”Uncaught exception: %@”, exception.description); NSLog(@”Stack trace: %@”, [exception callStackSymbols]); } [pool release]; return retVal; } For ARC: int main(int argc, char *argv[]) { … Read more