您的当前位置:首页正文

iOSUIProgressView控件用法

2022-03-17 来源:好走旅游网
iOSUIProgressView控件⽤法

IOS中进度条控件的⽤法总结。

进度条控件是IOS开发中⼀个简单的系统控件,使⽤总结如下:初始化⼀个进度条:

- (instancetype)initWithProgressViewStyle:(UIProgressViewStyle)style;注意:1.⽤这个⽅式初始化的进度条系统会默认给⼀个长度。

2.进度条的长度可以通过frame来设置,但是只有前三个参数有效。 3.风格枚举如下:

typedef NS_ENUM(NSInteger, UIProgressViewStyle) { UIProgressViewStyleDefault, // 普通样式

UIProgressViewStyleBar, // ⽤于⼯具条的样式};

设置进度条风格样式

@property(nonatomic) UIProgressViewStyle progressViewStyle;

设置进度条进度(0.0-1.0之间,默认为0.0)

@property(nonatomic) float progress;

设置已⾛过进度的进度条颜⾊

@property(nonatomic, retain) UIColor* progressTintColor;

设置未⾛过进度的进度条颜⾊

@property(nonatomic, retain) UIColor* trackTintColor;

设置进度条已⾛过进度的背景图案和为⾛过进度的背景图案(IOS7后好像没有效果了)

@property(nonatomic, retain) UIImage* progressImage;

@property(nonatomic, retain) UIImage* trackImage;

设置进度条进度和是否动画显⽰(动画显⽰会平滑过渡)

- (void)setProgress:(float)progress animated:(BOOL)animated;

因篇幅问题不能全部显示,请点此查看更多更全内容