xcode 4 IOS4.3 中的断点窗口
我刚刚下载了带有 IOS 4.3 的 xcode 4 并尝试在其上运行我的应用程序。我设置了一些断点,我可以想象代码当前停止在断点处,因为应用程序的初始屏幕尚未出现,而断点位于此之前。但我看不到断点停止的源代码。我也看不到单步/继续按钮,这对于旧的调试器来说是如此简单。如何打开调试器来查看我的代码位置现在在哪里?谢谢
I just downloaded xcode 4 with IOS 4.3 and trying to run my app on it. I have set some breakpoints and I can imagine that the code is currently stopped at a breakpoint, as the initial screen of the app has not come up and the breakpoint is before that. But I cannot see the source code are where the breakpoint is stopped. I also cannot see the single step/ continue buttons which were so easy with the old debugger. How can I open the debugger to see where my code position is right now? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在Xcode4中,断点窗口位于左侧的导航器视图中。您可以通过按
[cmd + 6]
或使用此按钮来打开它。区域位于屏幕底部,通过
[cmd + shift + Y]
或使用此按钮在调试区域中,您还可以找到用于单步执行代码的按钮
希望这有帮助!
In Xcode4, the breakpoint window is located in the navigator view on the left. You can open it by pressing
[cmd + 6]
or with this buttonThe debug area is located at the bottom of your screen, open it via
[cmd + shift + Y]
or with this buttonIn the debug area, you will also find the buttons for stepping trough your code
Hope this helps!