XCode 要求您格式化代码, 并对您设置限制, 其方式有点弱小。 我想到了一些东西, 比如选择一组代码, 并使用标签来重新定位整个街区, 这对于清理缩进非常有用, 特别是一些东西 。
我意识到我可以用一个外部编辑(如Sullime Text 2,这是超级文本和我的日常编辑)来编辑代码,但我想知道是否有插件或工具存在,可以整合成xcode来改进这种开发经验。
xcode 有哪些扩展,或者如果没有,是否有任何不太为人所知的特征有助于改进这个特征?
XCode 要求您格式化代码, 并对您设置限制, 其方式有点弱小。 我想到了一些东西, 比如选择一组代码, 并使用标签来重新定位整个街区, 这对于清理缩进非常有用, 特别是一些东西 。
我意识到我可以用一个外部编辑(如Sullime Text 2,这是超级文本和我的日常编辑)来编辑代码,但我想知道是否有插件或工具存在,可以整合成xcode来改进这种开发经验。
xcode 有哪些扩展,或者如果没有,是否有任何不太为人所知的特征有助于改进这个特征?
很难给您一个答案, 因为我们不知道您在 Xcode 中缺少的其他地方使用什么特性。 例如, 您可以按下 < code> Cmd- / code > 或 < code> Cmd- _ / code > 或 < code > Cmd- / code > 将一组代码移入或移出。 或者您可以使用 jrturton 在上面指出的 < code> ctrl- i < / code > 来“ 修补” 缩写。 所有 macs 键绑都有效。 事实上, 您应该查看前缀中的密钥绑, 以查看其他事物的可能。 我最喜欢的有 :
(1) 选择单词并点击 Cmd-E
使其成为搜索条目。 然后 Cmd-G
找到下一个实例。
(2) F6
进入调试器, F7
进入调试器, F7
进入, F8
退出
3) 像我讨厌命令行一样,gdb
在中断点停留时,对调用方法有若干有用的命令。您可以使用 call
命令调用任何函数或C++或客观-C方法。 (Type help call
在 gdb 提示学习更多。)
(4) 如果您的索引是最新的, 您应该能够点击 Cmd- 点击一个符号来查看其定义, 或者选择点击查看其文档 。
这些是你要找的东西吗? 如果不是,请举例说明你想要的东西。据我所知, Xcode 4 中没有插件装置,所以不存在扩展。
虽然第一个答案是一个很好的答案(从中吸取了很多教训 ), 但我想加上一点提示, 帮助我粘贴代码片段。 很多次 xCode 复制缩写, 以我不喜欢的方式复制, 然后我要重新打开整个片段 。
我开始做的是“强”跳到行 强> (<强>ctrl + a 强> <强> <强> cmd + ArrowLeft 强>) 的第一个字符,或者立即粘贴代码,或者在粘贴前缩进一两个,取决于我是否在函数、环中,等等。
Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...
I m using Xcode on OSX to develop command line C applications. I would also like to use Instruments to profile and find memory leaks. However, I couldn t find a way to display the console when ...
Hi I am new to objective c. I am trying to make an app for iphone. I have a button on my view, and the click on which the function playSound is called. This is working properly. It does plays the ...
I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....
This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...
我跑了X条码,试图把我的手套放在我的电话上。 I m 获取错误信息:“正在设计的方案没有运行”。
Is it possible to open the same file in two separate windows in Xcode. I can open a file in one window and the same file in the main Xcode editor window, but I wanted two separate fulltime editor ...
In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still considerable, we have ...