iOS添加非(c,c++)文件引发的"NSObjCRuntime.h"错误

在新工程导入以前模块化的类 编译的时候引发出 "NSObjCRuntime.h"错误

错在Prefix.pch中:


    #import "ISButton.h"

#ifdef __OBJC__

    #import 

    #import 

#endif

改成


#ifdef __OBJC__

    #import 

    #import 

    #import "ISButton.h"

#endif

你可能感兴趣的:(iOS添加非(c,c++)文件引发的"NSObjCRuntime.h"错误)