Xcode突然出现could not build module foundation错误

case :
在.pch 文件引入xxx.h 报错could not build module foundation Error

解决方案:
在引用头文件开始加入

#ifdef __OBJC__ 结束时加入
#endif

eg:

#ifndef PrefixHeader_pch
#define PrefixHeader_pch

#ifdef __OBJC__
#import 
#endif

#endif

你可能感兴趣的:(Xcode突然出现could not build module foundation错误)