开发中遇到的错误

.h文件中报错 unterminated conditional directive

此报错原因是因为条件编译缺少结束

检查是否缺少#ifdef 是否缺少 #endif


参考资料:https://www.jianshu.com/p/0ced030ea695

Mac开发 Could not build module 'Foundation'

在.pch文件中添加

#ifdef __OBJC__ 

 #endif

并将#import 内容放在 #ifdef __OBJC__ 和 #endif 之间

#ifdef __OBJC__

#import "ProjectManager.h"

#import "PERequest.h"

#import "PBURLRequest.h"

#import "PBUtility.h"

#import"JSON.h"

#endif

你可能感兴趣的:(开发中遇到的错误)