Since I've installed the last xCode (my previous one was the 3.xx), a have hard times to debug my crashing apps. Indeed, the callstack is often empty. And the displayed method is

int main(int argc, char *argv[]) {   
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, @"MyAppDelegate");
    [pool drain];
    return retVal;
}

Ex : Empty call stack !

Have anyone noticed this ? It was working perfectly on the same project with previous XCode. Is there any solution ?

link|improve this question

1  
Check this out - stackoverflow.com/questions/1373858/… – rishi Feb 13 at 16:46
2  
And check out stackoverflow.com/questions/8100054/… – Hot Licks Feb 13 at 16:56
feedback

2 Answers

up vote 1 down vote accepted

Try setting Exception Breakpoint on Breakpoint panel:

enter image description here

enter image description here

link|improve this answer
Wow ! It works for this crash. Thanks for the magic trick, but it seems too simple after reading the links above... – Martin Feb 14 at 9:04
Hum... unfortunately, this doesn't work for every crashes... – Martin Feb 15 at 9:37
feedback

Notice that you can change the number of items displayed in the stack frames view by dragging the slider at the bottom of the view.

link|improve this answer
1  
cooool ! I never noticed it before – Martin Feb 14 at 8:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.