iosswiftxcodedebugging

How to analyze an app's IPS file in Xcode?


I'm trying to find out why my app is crashing for certain users. I personally cannot replicate it.

The user emailed me their IPS file. This is the output after I've loaded it in Organizer, and right clicked, selected Re-symbolicate: http://pastebin.com/8q6RE7sU

I assume this is where the problem occurred in my code:

3   FlightMachine                       0x000000010003b970 0x100028000 + 80240
4   FlightMachine                       0x000000010008b79c 0x100028000 + 407452

But how do I find out what is at 0x100028000 + 80240, to find out what the actual problem is?

Thank you.


Solution

  • If you have dsym file of your app version which got crash, you can symbolicate it using atos tool with the steps mentioned in Apple documentation