oc与c混编出现的bug

2018-08-09  本文已影响0人  Flandreko

在项目中导入c文件混编时,如果有pch工程文件的话,项目会报错。

#ifndef Prefix_pch
#define Prefix_pch

#import "Macros.h"
#import "Masonry.h"
#import "BKKBaseViewController.h"


#endif /* Prefix_pch */

要解决错误的话,要将import的头文件添加到#ifdef __OBJC__#endif之间

//#ifndef Prefix_pch
#define Prefix_pch
#ifdef __OBJC__


#import "Macros.h"
#import "Masonry.h"
#import "BKKBaseViewController.h"


#endif /* Prefix_pch */
上一篇下一篇

猜你喜欢

热点阅读