Xcode 3.0 的输出窗口在哪里?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/2036214/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Where is Xcode 3.0's output window?
提问by pawz
I'm learning Xcode off a slightly older (10.2) book that deals with Project Builder. I've been using Xcode for ansi C for a while, but I can't find the output window that appears when you Build & Run an app. I am launching my apps from the commandline, but of course that doesn't help me if I want to set breakpoints or something. Where is the program output window that should appear when I build & run. Do I have it hidden or something ? Why can't I find it ?
我正在从一本处理 Project Builder 的稍旧 (10.2) 的书中学习 Xcode。我已经将 Xcode 用于 ansi C 一段时间了,但是我找不到构建和运行应用程序时出现的输出窗口。我正在从命令行启动我的应用程序,但是如果我想设置断点或其他什么,这当然对我没有帮助。我构建和运行时应该出现的程序输出窗口在哪里。我把它隐藏了还是什么?为什么我找不到?
回答by Niels Castle
Shift-Cmd-R brings up the output window.
Shift-Cmd-R 调出输出窗口。
回答by nick
There are a few windows that you should know about:
您应该了解几个窗口:
Debugger Console (keyboard shortcut = Shift-Cmd-R): This will show you any console output and you can click the breakpoints button to break into the GDB console debugger
Debugger (keyboard shortcut = Shift-Cmd-Y): This is the debugger window that shows your breakpoints with the source and includes table views for local variables and the stack
Breakpoints window (keyboard shortcut = Option-Cmd-B): This is a nifty window to find and manage breakpoints in a project
调试器控制台(键盘快捷键 = Shift-Cmd-R):这将显示任何控制台输出,您可以单击断点按钮进入 GDB 控制台调试器
调试器(键盘快捷键 = Shift-Cmd-Y):这是一个调试器窗口,显示带有源代码的断点,并包括局部变量和堆栈的表视图
断点窗口(键盘快捷键 = Option-Cmd-B):这是一个漂亮的窗口,用于在项目中查找和管理断点
This cocoaheads talkhas a lot of useful info about debugging with xcode.
这个cocoaheads talk有很多关于使用 xcode 调试的有用信息。
Hope this helps.
希望这可以帮助。