EFLabel赋予了众多 UILabel所不具备的能力。
| 12
 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
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 
 | IB_DESIGNABLE@interface EFLabel : UILabel
 
 
 @property (assign, nonatomic) IBInspectable CGFloat borderWidth;
 
 @property (strong, nonatomic, nullable) IBInspectable UIColor *borderColor;
 
 @property (assign, nonatomic) IBInspectable CGFloat cornerRadius;
 
 
 
 @property (strong, nonatomic, nullable) IBInspectable UIColor *debugBGColor;
 
 
 
 
 @property (assign, nonatomic) IBInspectable BOOL tiped;
 
 
 
 
 
 
 
 - (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string;
 
 
 
 
 
 
 
 - (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string systemFontOfSize:(CGFloat)systemFontOfSize;
 
 
 
 
 
 
 
 - (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string font:(UIFont *_Nonnull)font;
 
 
 
 
 
 
 
 
 - (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string font:(UIFont *_Nonnull)font textColor:(UIColor *_Nullable)textColor;
 
 @end
 
 | 
[这是什么?]