Symbolicating Stack Trace without Crash

后端 未结 3 1040
夕颜
夕颜 2021-02-04 06:10

Is there any way to symbolicate a stack trace that is not a full crash report?

I am logging the string result of [NSThread callStackSymbols] to our server. This doesn\'t

3条回答
  •  醉梦人生
    2021-02-04 06:17

    I ran into the same issue and this answer worked for me: https://stackoverflow.com/a/4954949/299262

    You can use atos to symbolicate individual addresses as long as you have the dSYM.

    example command:

    atos -arch armv7 -o 'app name.app'/'app name' 0x000000000

提交回复
热议问题