http://stackoverflow.com/questions/1460892/symbolicating-iphone-app-crash-reports
//------------
Steps to analyze crash report from apple:
-
Copy the release .app file which was pushed to the appstore, the .dSYM file that was created at the time of release and the crash report receive from APPLE into a FOLDER.
-
OPEN terminal application and go to the folder created above (using CD command)
-
atos -arch armv7 -o YOURAPP.app/YOURAPP MEMORY_LOCATION_OF_CRASH. The memory location should be the one at which the app crashed as per the report.
Ex: atos -arch armv7 -o 'app name.app'/'app name' 0x0003b508
This would show you the exact line, method name which resulted in crash.
Ex: [classname functionName:]; -510
Symbolicating IPA
if we use IPA for symbolicating - just rename the extention .ipa with .zip , extract it then we can get a Payload Folder which contain app. In this case we don't need .dSYM file.
Thanks
本文指导您如何通过复制从App Store推送的应用、创建的.dSYM文件以及Apple接收的崩溃报告到一个文件夹,并使用终端命令来分析崩溃报告。通过此过程,您可以定位到导致崩溃的确切代码行和方法名。
1804

被折叠的 条评论
为什么被折叠?



