Xcode global breakpoints do not show stack trace

I set global breakpoints from the libobjc.A.dylib and CoreFoundation locations. I am running my iphone application and it is getting an exception. Xcode stops at a breakpoint, but the error is not displayed in the log: Waiting for breakpoint 1 - "objc_exception_throw" enabled Pending breakpoint 2 - "- [NSException raise]" enabled

I click the Continue button on the console and I get the same indistinguishable error that I received before I turned on the breakpoints.

How to get a stack trace that should generate global breakpoints?

+2
source share
1 answer

type bt or backtrace from the gdb console

+6
source

Source: https://habr.com/ru/post/916465/


All Articles