在 Xcode 中为无法识别的选择器创建断点
是否可以在 Xcode 中设置断点,让调试器仅在无法识别的选择器上停止?
我还有其他正在触发的异常,并且我只想在 无法识别的选择器
异常上触发,没有其他异常。
Is it possible to set the breakpoint in Xcode to have the debugger stop only on unrecognized selector?
I have other exceptions that are triggering, and I only want to trigger on the unrecognized selector
exception, nothing else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为
-[NSObject doesNotRecognizeSelector:]
设置符号断点应该可以解决问题。在 Xcode 4 中,按
cmd
+6
转到断点导航器,然后单击+
并选择“添加符号断点...”。配置。Setting a symbolic breakpoint for
-[NSObject doesNotRecognizeSelector:]
should do the trick.In Xcode 4, press
cmd
+6
to go to the Breakpoint Navigator, then click the+
and choose "Add Symbolic Breakpoint…". Configure.