如何循环浏览 xcode 窗口(或在底部窗格中打开“帮助”)?
在 Xcode 3.2 中,当我按 ALT、CMD、双击类名**时,帮助/参考会在新窗口中弹出。在以前的版本中,它看起来像是在 Xcode 主窗口的底部窗格中打开的。我可以在 3.2+ 中复制它吗?
我遇到的问题是,如果任一 Xcode 窗口(帮助或主)最大化,则很容易将一个窗口释放到另一个窗口后面,并且我似乎无法循环浏览各个 Xcode 窗口(正常的窗口循环不会不起作用 - 两个窗口都只显示为一项,“Xcode”)。
我很高兴了解如何循环浏览 Xcode 窗口或在底部窗格中调出帮助窗口,就像以前的版本一样。目前我正在使用 Expose 来访问隐藏窗口 - 这还可以,但不是最佳选择。
谢谢。
** ALT 和双击现在可在 3.2 中调出 QuickHelp
In Xcode 3.2 the help/reference pops up in a new window when I ALT, CMD, DOUBLECLICK on a class name**. In previous versions it looks like it used to open up in the bottom pane of the main Xcode window. Can I replicate that in 3.2+?
The problem I'm having is that if either one of the Xcode windows (help or main) is maximised, it's easy to loose one window behind the other, and I seem unable to cycle through the individual Xcode windows (the normal window cycling doesn't work - both windows just show up as one item, 'Xcode').
I'd be happy to find out how to cycle through the Xcode windows or bring up the help window in the bottom pane, as it was in prior versions. Currently I'm using Expose to access the hidden window - which is okay, but not optimal.
Thanks.
** ALT & DOUBLE-CLICK now brings up QuickHelp in 3.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能简单地输入 Command-~(命令波形符)吗?这对我有用,并且是在应用程序窗口之间循环的常用方法。
Can you not simply type Command-~ (command tilde)? That works for me and is the common method of cycling between the windows of an application.
至少在 XCode 4 中,但也可能在 3 中,您可以使用
Ctrl+Command+Arrows
在选项卡之间导航。向上/向下按钮将在头文件和源文件之间切换,向左/向右按钮将在打开的窗口/选项卡之间切换。At least with XCode 4, but probably with 3 too, you can use
Ctrl+Command+Arrows
for navigating between tabs. The Up/Down buttons will switch between header files and source files and the Left/Right between opened windows/tabs.