This is a line of stack track from my iOS app crash log:
MyAPPName 0x001f642e 0xd2000 + 1197102
I know how to symbolicate a crash log, but what does 0x001f642e 0xd2000 + 1197102 mean in every line of stack trace?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Another form of writing those values is:
0x001f642e = 0xd2000 + 1197102.So
0x001f642eis the actual address of the code being executed, while0xd2000is the starting address of the binary where the code is being executed and1197102is the offset within the binary.