2018.9.12
1.iOS添加c,c++文件引发的NSObjCRuntime.h错误;
原因:错在Prefix.pch中,
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
解决:添加
__OBJC__
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif









网友评论