Objective C - 禁用特定的调试屏幕

时间:2014-04-09 11:11:29

标签: ios objective-c xcode

是否可以在Xcode调试模式下禁用,跳过或忽略此类屏幕?

图像: enter image description here

我想看到的只是我的代码,类,变量等..没有这种类型的屏幕(与我无关)

1 个答案:

答案 0 :(得分:1)

检查您是否已停用反汇编

deactivate it in the XCode 4.X with

Product -> Debug Workflow -> Show Disassembly When Debugging

在XCode 5.X中:

Debug > Debug Workflow > Show Disassembly when debugging.

过滤调试信息

避免步骤进入汇编的另一个策略是在Debug Navigator的按钮中将堆栈跟踪过滤到源代码。

调试时,打开调试导航器(显示线程的导航器),然后按左下角。 (Apple documentation shows more about that)。请注意,您需要在断点处停止。

enter image description here