How to trace where Xcode program crash

ios, objective-c, xcode

Solution

You have to set `Exception Breakpoint` Go 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!!

Problem

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"?

Original source