Search code examples
objective-ciosxcodexcode4

XCode 4 iOS - Debugger shows bytecode instead of telling me what line my app crashed


When my app crashes, instead of seeing what line caused, I see a window that prints all unreadable byte code. I used to be able to see what line it crashed on, but I must have changed something. Here's a screen shot: Screenshot

What setting can I change to have XCode show me where my app crashed?


Solution

  • UNcheck the "Show Disassembly When Debugging" menu option:

    disassembly



    The inverse of the above; if you want to show disassembly for the current debug location, you can use this drop-down menu:

    disassembly2