Xcode 快捷键

  1. 文件操作相关的快捷键
    command + n 新建文件(new file)
    command + shift + n 新建工程(new project)
    command + alt + n 新建文件夹组(new group)
    command + o 打开工程(open project)
    command + shift + o 快速打开工程中的文件(open quickly),类似于Spotlight的功能
    command + option + a 向工程中添加文件(add file to project)
    command + alt + w 关闭当前工程(close project) 和command + w的效果一样

  2. 窗口导航快捷键
    command + 0 切换左侧导航窗口的显示隐藏(hide/show Navigator)
    command + 1 ~ 8 在工程导航窗口的8个tab间切换
    command + option + 0 切换右侧功能面板(hide/show Utilities)
    command + option + 1 ~ 4 在右侧功能面板的4个tab间切换
    command + shift + y 切换底部调试区域(hide/show Debug area)
    command + option + t 隐藏toolbar

  3. 代码编辑器里的快捷键
    esc 可以弹出对应的代码提示
    command + → 移动到一行末尾
    command + delete 删除一行代码,和上一个快捷键组合使用
    command + [ 或 ] 向前或向后调整代码缩进
    control + i 根据当前行代码所在位置自动调整缩进(可以先command + a全选然后调整所有代码的缩进)
    command + option + [ 或 ] 将代码上下移动一行
    control + command + ↑ 或 ↓ 在.m/.c/.cpp 文件和头文件.h之间切换
    control + command + → 或 ← 返回至上一次/下一次光标位置
    control + command + e 重构变量名,将光标放在变量名上或者双击选中这个变量,然后按该快捷键,就可以实现当前文件下所有用到该变量的地方进行修改
    command + \ 添加或者移除断点
    command + y 切换当前所有的断点的激活状态
    option + → 光标按单词移动
    option + command + ←或者→ 方法折叠或者展开
    option + shift + ↑或者↓ 激活多行光标选择

4、快速索引
control + 6 快速查看当前class的方法
command + control + j 跳转至定义处
command + l(L) 跳转至指定行
command + shift + 0 (Zero) 快速查看开发文档

  1. storyboard中的快捷键
    option + command + enter 切换到Assitant editor
    command + enter 从Assitant editor切换回storyboard编辑器界面
    command + -(减号键) 缩小storyboard界面
    command + shift + =(等号键) 放大storyboard界面,双击ViewControllerScene也可以将其缩放到合适的大小
    command + = 在选中控件的情况下按该快捷键会根据控件中的内容(如UILabel、UIButton中的文本)自动调整控件的大小
    command + option + = 同样是选中控件的情况下,可以根据控件的约束更新位置(update frame) 另外在storyboard界面通过command + shift + o 搜索到对应的文件后,按住option键双击或者按回车这个文件可以以Assitant Editor的形式在右侧打开该文件

  2. Debug相关快捷键
    command + r 编译并运行当前工程
    command + b 仅编译工程
    command + . 结束运行中的工程或者取消编译中的工程
    F6 从断点处执行下一行代码(stepOver)
    F7 跳到当前的函数内部调试(stepInto)
    F8 从当前函数中返回(stepOut)

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