Skip to content

Stack trace or more info on unhandled exception in Xcode/iPhone – Stack Overflow

A friend sent this to me and it sounds great – I’ll have to try it. If you do, let me know what you think…

If you add two breakpoints, you should be able to debug these exceptions. To do this, go to Run | Show | Breakpoints and create two global breakpoints (I do them globally because they are so useful in all my applications). The first should be named “objc_exception_throw” and its location should be “libobjc.A.dylib”. The second should be “-[NSException raise]” and its location should be “CoreFoundation”.

Now, if you start debugging your application with breakpoints enabled, it should break on the throw of these exceptions. You should then be able to see the chain of events that led to the exception within the debugger.

via Stack trace or more info on unhandled exception in Xcode/iPhone – Stack Overflow.