iOS开发之xcode设置提高项目编译效率

1.开启编译结束后显示编译时间


image.png

终端执行以下命令

defaults write com.apple.dt.Xcode ShowBuildOperationDuration YES

2.设置xcode编译的线程数,提高编译效率。我这里设置4个线程。

defaults write com.apple.Xcode PBXNumberOfParallelBuildSubtasks 4

3.build only 设置debug为YES


image.png

4.设置Debug information Format选项,debug为DWARF


image.png

你可能感兴趣的:(iOS开发之xcode设置提高项目编译效率)