随着大量的Xcode新手的涌入,我相信会有很多Xcode的技巧和技巧可以分享。
你的呢?
随着大量的Xcode新手的涌入,我相信会有很多Xcode的技巧和技巧可以分享。
你的呢?
当前回答
使用xcodebuild命令行在共享构建机器上进行干净的构建:
cd project_directory
xcodebuild -configuration Release -alltargets clean
xcodebuild -configuration Release -alltargets
其他回答
Command⌘alt shift T:在项目树中显示当前编辑的文件。
Cmd + Ctrl + up / down折叠或展开所有函数。
Cmd + ~(波浪号-看起来很奇怪的按钮…)
在任何打开的Xcode窗口之间切换-也当多个项目打开时。
使用xcodebuild命令行在共享构建机器上进行干净的构建:
cd project_directory
xcodebuild -configuration Release -alltargets clean
xcodebuild -configuration Release -alltargets
能够快速查看可以从超类中重写的所有方法。例如,当扩展UITableViewController时,我只需要输入我的实现:
- ta
然后我按ESC键,看到我的超类中所有以“ta”开头的方法,比如
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
这也适用于采用协议。