// // DHImplementObject.h // Pods // // Created by jiangbin on 2017/11/6. // // 封装协议实现的类型,普通类、Storyboard加载等 #import typedef enum : NSUInteger { /// 普通类 DHImplementTypeNormal, /// Storyboard加载的 DHImplementTypeStoryboard } DHImplementType; @interface DHImplementObject : NSObject /// 实现的类型 @property (nonatomic, assign) DHImplementType implementType; /// 实现的类 @property (nonatomic, strong) Class implementClass; /// Storyboard @property (nonatomic, copy) NSString *storyboardName; /// Storyboard上类对应的标识 @property (nonatomic, copy) NSString *storyboardIdentifier; @end