case :
在.pch 文件引入xxx.h 报错could not build module foundation Error
解决方案:
在引用头文件开始加入
#ifdef __OBJC__ 结束时加入
#endif
eg:
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
#ifdef __OBJC__
#import <xxx.h>
#endif
#endif
case :
在.pch 文件引入xxx.h 报错could not build module foundation Error
解决方案:
在引用头文件开始加入
#ifdef __OBJC__ 结束时加入
#endif
eg:
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
#ifdef __OBJC__
#import <xxx.h>
#endif
#endif