Xcode实用快捷键

电脑按键:

⌘——Command 

⌃ ——Control

⌥——Option (alt)

⇧——Shift

⇪——Caps Lock

fn——功能键就是fn



快捷键:


1、切换头文件和m.文件,很实用
Command + control+ 上下箭头键


2、go back,回退,就是回到你上次打开的页面。
control+command+ 左箭头


go forward 回到你前面打开的页面
control+command+ 右箭头


3. command + 1/2/3/4/5/6/7/8 依次选中下图对应图标, command + 0关闭和打开导航栏




4.文档内搜索
Command + F: 搜索
Command + G: 搜索下一处
Shift + Command + G: 搜索上一处


5.断点调试:
F6 : Step Over (跳过当前行)
F7 : Step Into (跳进当前行的方法)
F8 : Step Out (跳出当前方法)
Command + Control + Y : 跳过当前断点,继续执行

5、代码缩进
左缩进 command+[
右缩进 command+]

6. Command + , (逗号):打开Preferences

7. Command + Q   退出Xcode

你可能感兴趣的:(Xcode实用快捷键)