0%

EFUIKit/EFLabel.h

Supporting Files/EFUIKit/EFLabel.h

EFLabel赋予了众多 UILabel所不具备的能力。

2.0~[这是什么?]

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
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;

/**
用一个 String初始化 Label

@param string a NSString
@return EFLabel 实例
*/
- (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string;
/**
用一个 String初始化 Label,指定字体大小

@param string a NSString
@param systemFontOfSize 字体大小
@return EFLabel 实例
*/
- (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string systemFontOfSize:(CGFloat)systemFontOfSize;
/**
用一个 String初始化 Label,指定字体

@param string a NSString
@param font 字体
@return EFLabel 实例
*/
- (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string font:(UIFont *_Nonnull)font;
/**
用一个 String初始化 Label,指定字体和文本颜色

@param string a NSString
@param font 字体
@param textColor 文本颜色
@return EFLabel 实例
*/
- (instancetype _Nonnull)initWithString:(NSString *_Nonnull)string font:(UIFont *_Nonnull)font textColor:(UIColor *_Nullable)textColor;

@end

[这是什么?]