在新工程导入以前模块化的类 编译的时候引发出 "NSObjCRuntime.h"错误
错在Prefix.pch中:
#import "ISButton.h"
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
改成
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "ISButton.h"
#endif