FWProgressViewPlugin
@protocol FWProgressViewPlugin <NSObject>
自定义进度条视图插件
-
设置或获取进度条当前颜色
Declaration
Objective-C
@required @property (nonatomic, strong, readwrite) UIColor *_Nonnull color; -
设置或获取进度条大小
Declaration
Objective-C
@required @property (nonatomic, assign, unsafe_unretained, readwrite) CGSize size; -
设置或获取进度条当前进度
Declaration
Objective-C
@required @property (nonatomic, assign, unsafe_unretained, readwrite) CGFloat progress; -
设置进度条当前进度,支持动画
Declaration
Objective-C
- (void)setProgress:(CGFloat)progress animated:(BOOL)animated;
FWProgressViewPlugin Protocol Reference