No call stack in Exception in xCode 4

I have an exception, I can not track the trace. I would like to know where the exception is being thrown. Is there an option for xCode 4.2? As you can see, the call stack doesn't help much. The only thing I know is that Iam is trying to access an element in NSArray with a failed index.

Any ideas are welcome. Thank!

enter image description here

+5
source share
1 answer

Set a breakpoint on objc_exception_throw, and this will stop the program on this message.

EDIT ... Or just set an Exception breakpoint in Xcode. Too often used to create this material directly in gdb.

+5
source

All Articles