iOS控件--UIProgressView--进度条控件
2019-01-02 本文已影响2人
罂粟之城
UIProgressView,也就是进度条,我们经常会在下载的时候看到这个控件。
初始化 UIProgressView
//进度条高度不可修改
UIProgressView *progress = [[UIProgressView alloc] initWithFrame:CGRectMake(100, 100, 200, 40)];
//设置进度条的颜色
progress.progressTintColor = [UIColor blueColor];
//设置进度条的当前值,范围:0~1;
progress.progress = 0.5;
/*
typedef NS_ENUM(NSInteger, UIProgressViewStyle) {
UIProgressViewStyleDefault, // normal progress bar
UIProgressViewStyleBar __TVOS_PROHIBITED, // for use in a toolbar
};
*/
progress.progressViewStyle = UIProgressViewStyleDefault;