I tried finding the method name from a .crash file using "atos" command line utility, but getting wrong method names. Ex: crash log says exception is due to sending message to UIComponent unrecognized selector sent to intense but after symbolicating "atos" showing a method in network related class.
As suggested here iOS crash reports: atos not working as expected tried looking at the "Slide & LoadAddress" in my case these both are same (Slide: 0x4000 LoadAdress: 0x4000).
And also I verified the .iPA file that I am using is the correct as suggested here: https://developer.apple.com/library/mac/qa/qa1765/_index.html.
I am not sure whats going wrong. Could any one faced the same issue? Please suggest any other approaches.
I have a .iPA file and .crash file, need to find out correct method names.
Here is the full crash report:
http://www.filedropper.com/symbolicate
Command to find out the .iPA is the correct one:
dwarfdump --uuid Example.app/Example
Command to find out the method name:
atos -arch armv7 -o Example.app/Example -l 0x4000 0x7f68bb0 0x3017d000 + 84904
which is giving a method in network class where I don't have any UIComponent.
Please let me know if you need more details.
Thanks Shiva.