一直在用xcode6開發,但項目都是在xcode5上建立的,因此一直沒注意到,xcode6居然幹掉pch文件了。ios
1,Command+N,打開新建文件窗口:ios->other->PCH file,建立一個pch文件:「工程名-Prefix.pch」:xcode
2,將building setting中的precompile header選項的路徑添加「$(SRCROOT)/項目名稱/pch文件名」(例如:$(SRCROOT)/LotteryFive/LotteryFive-Prefix.pch)緩存
能夠了,編譯一下程序,若是有錯誤檢查一下添加的路徑是否正確。ui
3,將Precompile Prefix Header爲YES,預編譯後的pch文件會被緩存起來,能夠提升編譯速度spa