课程名称:Developing iOS 11 Apps with Swift
课程链接 https://itunes.apple.com/podcast/id1315130780
shortcuts
run : cmd + r
navigator: cmd + 0
rightmost pane: cmd + option + 0
menus in navigator bar: cmd + 1~9
menus in rightmost pane : cmd + option + 1~2
console and debugger: cmd + shift + Y
assistant editor:
- 呼出: cmd + option + enter
- 弹出:cmd + enter
quick open: cmd + shift + o
使用// TODO: xxx
和// MARK: xxx
可以快速定位
auto indent: ctrl + i
当出现lldb
的时候,后续可以输入,如要求point out sth.,则输入po game
。输出某一个变量的信息使用p game
。
step over 跳过 即一行一行执行
step into 进入 即进入该函数的实现调用
step out 跳出 即从当前函数跳出到调用该函数的下一行
source control book recommended by the course: gitpro