In the past, with the old and good Xcode 3, every time I had a crash, Xcode stopped at the offending line showing the crash. It was good times, nice to debug.
Now with Xcode 4.2, every time the app crashes, it stops at main.m at this line
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
that gives no clue to what is causing the crash. The problem can be in any class but it will always stop on main.m when it crashes.
is there a way to make it work correctly again?
thanks
note: I have asked this before on SO, but the solution given that time was proved to be not satisfactory and the problem persists.