Breaking on Objective-C exceptions is really useful and easily the best way to debug issues with NSArray and the like. However, exceptions are also a great thing to use while actually programming.

Xcode offers two choices for breaking on Obj-C exceptions:

  • Break whenever an exception is thrown
  • Break whenever an exception is caught

Breaking on catch seems to be basically useless, since the point of @throw is a lot more important. However, if I'm handling an exception fine, I don't want my program to stop.

So, the ideal situation would be: break on all exceptions that are not caught by my code, but show a stack trace for when the exception was thrown.

Another decent solution would be some sort of debugging whitelist for exceptions that should not be broken on.

Is there any way to filter exception breakpoints?

link|improve this question

20% accept rate
feedback

1 Answer

You read up on setting conditions and actions on breakpoints.

link|improve this answer
1  
The "condition" field isn't available for exception breakpoints or symbolic breakpoints, only breakpoints set on a specific line. I suppose that it might be possible with "debugger command" and some gdb scripting to spit out a continue based on the backtrace. – Nate Stedman Nov 13 '11 at 5:48
feedback

Your Answer

 
or
required, but never shown

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