iOS学习笔记(1)--认识Xcode6.1的Interface Builder和常用快捷键

Interface Builder基本界面

  1. 红色区域为工具栏(Tool Bar)
  2. 蓝色区域为导航区(Navigator Area)
  3. 绿色区域为编辑区(Editor Area)
  4. 黑色区域是调试区(Debug Area)
  5. 橙色区域是检查器区(Inspector)
  6. 粉紫色区域是库区(Library)

快捷键总结

导航区

  • command+1 Show Project Navigator
  • command+2 Show Symbol Navigator
  • command+3 Show Find Navigator
  • command+4 Show Issue Navigator
  • command+5 Show Test Navigator
  • command+6 Show Debug Navigator
  • command+7 Show Break Point Navigator
  • command+8 Show Report Navigator
  • command+0 Shut down Navigator

检查器区

  • command+option+1 Show File Inspector
  • command+option+2 Show Help Inspector
  • command+option+3 Show Identity Inspector
  • command+option+4 Show Attributes Inspector
  • command+option+5 Show Size Inspector
  • command+option+6 Show Connection Inspector

调试相关

  • command+R 运行
  • command+B 编译
  • command+F6 Step over
  • command+F7 Step into
  • command+F8 Step out
  • command+. 结束调试
  • command+ 设置或取消断点
  • command+y使所有断点失效或生效

库的快捷键

  • command+option+control+1 Show File Template Library
  • command+option+control+2 Show Code Snipped Library
  • command+option+control+3 Show Object Library
  • command+option+control+4 Show Media Library

其他

  • command+, 打开Preferences
  • command+shift+0 帮助文档
原文地址:https://www.cnblogs.com/nycoder/p/4333310.html