enter image description here
I am trying to debug my app after crashing but the console gives me no other info but
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
how do I enable the debug messages?
enter image description here
I am trying to debug my app after crashing but the console gives me no other info but
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
how do I enable the debug messages?
Try enabling a break point on All Exceptions. Maybe you can see where the throw is coming from and debug from there.
ps. CoreData has terrible error reporting.
Steps:
Go to the breakpoint tab in the left navigator.
Hit the plus button on the bottom left and click Exception Breakpoint.
Make sure Exception is set to All
and Break is set to On Throw
.
Open the Breakpoint navigator and add a breakpoint for All Exceptions
.
The app should then stop at the line that causes the exception.