JLChen
2021-05-18 a869383e163a18cdedcf587383c1eca043129754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
//  DHImplementObject.h
//  Pods
//
//  Created by jiangbin on 2017/11/6.
//
//  封装协议实现的类型,普通类、Storyboard加载等
 
#import <Foundation/Foundation.h>
 
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