Xcode常用快捷键总结

参考资料:
1. http://nshipster.com/xcode-key-bindings-and-gestures/
2. http://iphonedev.tv/blog/2014/9/15/14-xcode-time-saving-shortcuts-memorize-and-improve-your-productivity
3. http://stackoverflow.com/questions/1402174/what-xcode-keyboard-shortcuts-do-you-use-regularly
4. http://spin.atomicobject.com/2014/03/23/xcode-keyboard-shortcuts/

一. Editor
文件结构跳转:command + J (自定义)
提示: alt + / (自定义)
选择一行:alt + L (自定义)
选中一个单词:alt + W (自定义)
扩大选中区域到行尾/行首: command + shift  + right / left
扩大选中区域到上一行或下一行: command + shift + up / down
扩大选中区域到前一个或后一个单词:shift + option + left /right
跳转一个单词:option + left / right
跳转到行首或行尾:command + left / right
跳转到指定行:command + L
发现:command + F
替换:alt + command + F
整个工程发现: shift + command + F
整个工程替换:shift + alt + command + F
前进/后退: ctrl + command + forward/backward
跳转到头文件/m文件:ctrl + command + up/down
注释一行:command + /
跳转一屏:option + up/down

二. IDE
快速查找:command + shift + o
运行工程:command + R
清理工程:  command + shift + k
停止运行:command + .
查看文档:alt + 鼠标 ,command + shift + 0 (zero)
跳转到对应的.h/.m文件:ctrl + command + up/down
显示标准编辑器: command + enter
显示辅助编辑器: option + command + enter
显示历史版本编辑器: shift + ctrl + command + enter
显示/隐藏导航栏: command + 0 (zero)
选中导航栏(对应左侧导航栏): command + 1 / command + 2 … command + 8
显示/隐藏Debug区域: shift + command + Y
跳到console:  shift + command + C
导航区筛选框: option + command + J
跳转到工程目录当前选中的文件: command + shift + J,选中之后,left收起工程group,right展开group,up/down选中对应的文件
Show Related Items: ctrl + 1 (这个很有用)
Show Previous History: ctrl + 2
Show Next History: ctrl + 3
Show Top Level Items: ctrl + 4
Show Group Files: ctrl + 5

三. Debugging:
Step over:   F6
Step into:  F7
Add/remove breakpoint:  command + \
Disable/enable all breakpoints:  command + Y
Pause/Play the debugger:  ctrl + command + Y

你可能感兴趣的:(Xcode常用快捷键总结)