xcode

Xcode 快捷键

编译、运行,Instruments,单元测试,暂停这些基本操作就不解释了。我把一些自认为比较有用的命令加粗表示:
文件编辑

Command + [ 和 Command + ] 左右缩进
Command + Option + [ 和 Command + Option + ] 当前行上下移动
Command + Option + Left/Right 折叠、展开当前代码段

文件跳转

Command + Control + Up/Down .h 和 .m 文件切换
Command + Control + Left/Right 浏览历史切换
Command + Control + j 跳转到定义处
Command + Option + j 跳转到目录搜索
Command + 1/2/3/4/5 跳转到左侧不同的栏目
Comannd + Shift + o 文件搜索

搜索

Comannd + Shift + f 全局搜索
Command + e 搜索当前选中单词
Command + g 搜索下一个

tab

Command + t 新建一个 tab
Command + w 关闭当前 tab
Command + Shift + [ 和 Command + Shift + ] 左右切换 tab

Scheme

Command + shift + , 编辑 scheme,选择 debug 或 release

调试

F6:跳到下一条指令
F7:跳进下一条指令(它会跳进内部函数,具体效果自测)
Control + Command + y 继续运行

你可能感兴趣的:(xcode)