前沿:
xcode6中去掉了pch,为了一些琐碎的头文件引用,加快了 编译速度!
这样就ok了!
xcode6后的版本要自己手动的添加步骤如下:
这样就ok了!
-------------
-------------
-------------
-------------
-------------
-------------
-------------
-------------
----------
可能遇到问题:
/Users/apple/Documents/mywork/zhece/DeatchTime/:3:10: '/Users/apple/Documents/mywork/zhece/DeatchTime/PrefixHeader.pch' file not found
这时候你会发现少了一层路径,这是相对路径,所有要手动的把
$(SRCROOT)/
pchFile.pch
改为
$(SRCROOT)/
DeathTime /pchFile.pch
这样就解决了