Objective-C - disable special debugging screen

Is it possible to disable, skip or ignore this type of screen in Xcode debug mode?

Picture: enter image description here

All I want to see is my code, classes, variables, etc. without this type of screen (does not apply to me)

+4
source share
1 answer

Check if the demo is turned off

deactivate it in Xcode 4.X with :

Product -> Debug Workflow -> Show Disassembly When Debugging

And in Xcode 5.X via:

Debug > Debug Workflow > Show Disassembly when debugging.

Filter debug information

Another tactic to avoid assembly steps is to filter the stack trace to the source code using the Debug button.

(, ), . ( Apple .). , .

enter image description here

+1

Source: https://habr.com/ru/post/1535728/


All Articles