How to get source code line from stack trace in obj-c / ios

后端 未结 4 1507
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-05 06:31

I use NSSetUncaughtExceptionHandler to print the stack trace to local file in iPhone, which will be sent to our server next time the app launches. Then I can examin

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-05 06:55

    Set a breakpoint in the catch block, once the flow of code stops you can use gdb commands like 'bt'.

提交回复
热议问题