You will need the .dSYM file created during the build and crash report. Inside the crash report, find the memory addresses in your application where the crash occurred. There should be a string like
13 YourApp 0x0001910a 0x1000 + 98570
Where 0x0001910a is the memory failure address.
Then use the atos command on the command line to symbolize the address. The syntax is similar to:
atos -arch arm -o [PATH]/YourApp.app.dSYM/Contents/Resources/DWARF/YourApp 0x0001910a
This will return the file, method, and failure line. Something like that:
-[YourView doSomething] (in YourApp) (YourView.m:474)
The atos command is part of Xcode.
source share