no stack traces seemed to work

no stack traces seemed to work.[sizemedium]http://stackoverflow.com/questions/7841610/xcode-4-2-de

no stack traces seemed to work.
[size=medium]http://stackoverflow.com/questions/7841610/xcode-4-2-debug-doesnt-symbolicate-stack-call

static void uncaughtExceptionHandler(NSException *exception) {    NSLog(@"CRASH: %@", exception);    NSLog(@"Stack Trace: %@", [exception callStackSymbols]);    // Internal error reporting}

Next, add the exception handler to your app delegate:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{       NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);    // Normal launch stuff}[/size]