How to disable build in Xcode debugger window?

For some reason, my Xcode debugger shows build code when debugging iPhone application code. I would like to see only Objective-C code, not assembly. This worked fine, but now it has changed. How to return to "normal" debugging? Is there a parameter in Xcode somewhere?

/P

+7
objective-c iphone xcode
source share
3 answers

@AlexR: To see the source code in Xcode 4.4, turn off Show Disassembly when debugging here: Product -> Debug Workflow -> Show Disassembly When Debugging

+6
source share

In Xcode 3.x: Launch β†’ Debugger Display β†’ Source Only

+4
source share

In Xcode 8.2.1:

  • Click the Debug menu item
  • Select Debug Workflow
  • Click "Always show disassembly" so that there are no checkmarks.
+1
source share

All Articles