仅针对单个设备的Xcode断点?

时间:2014-03-31 14:10:29

标签: debugging xcode5 breakpoints

是否可以将Xcode 5.1中的断点限制为只有一个设备(如果在开发Game Center应用程序时iPhone(如iPhone和iPad)连接到Mac)?

1 个答案:

答案 0 :(得分:0)

这个词不是最简单的解决方案,但这是我想到的第一件事:

右键单击断点,选择“编辑”,然后在“条件”字段中添加如下内容:

(BOOL)[some condition that is true only on the relevant device]

编辑:请注意,条件断点的编译器不支持属性getter的instance.something语法。你应该只使用[实例]。