docs: 批量博文

This commit is contained in:
杭城小刘
2020-02-25 17:46:51 +08:00
parent 8e5d2c9e7f
commit 6e99436a9e
373 changed files with 18071 additions and 1116 deletions

11
Chapter1 - iOS/1.67.md Normal file
View File

@@ -0,0 +1,11 @@
# iOS工程编译速度优化
要提升编译速度,我们首先要知道有没有提升?那就需要一个量化的标准。下面的命令让 Xcode 告诉你编译耗费多久时间。
```shell
defaults write com.apple.dt.Xcode ShowBuildOperationDuration YES
```
## ccache
提高编译速度需要依靠缓存的能力, [ccache](https://ccache.dev) 是一个靠谱的缓存。基于编译器层面。