I’m getting an error in debugger. In Thread my app crash on line:
0x37265f78: ldr r3, [r4, #8]
with:
Thread 1: EXC_BAD_ACCESS (code=1, address=0x50000008)
How to find out where app actually crash? There is a something like “call stack”?
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.
You have to set
Exception BreakpointGo to the Breakpoints navigator, click the + button at the bottom, and add an Exception Breakpoint.
Now you will know the exact line where any of your exception will occur (e.g. line of crash). best of luck!!