导入.C文件报错“Could not build module 'Foundation'”

解决办法:
在.pch文件里的OC头文件放入 #ifdef __OBJC__ #endif 之间,是为了避免将其认为是C文件。

如下所示:

#ifndef PrefixHeader_pch
#define PrefixHeader_pch

#ifdef __OBJC__

#import "BKHeaderFile.h"
#import "BKHeaderMacro.h"

#endif


#endif /* PrefixHeader_h */

你可能感兴趣的:(导入.C文件报错“Could not build module 'Foundation'”)