标签:
//创建进度指示器
UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
progressView.frame = CGRectMake(imgView.frame.origin.x, imgView.frame.origin.y+130, 130, 20);
//UIProgressViewStyleDefault 标准进度条
//UIProGressViewStyleBar 深灰色进度条,用于工具栏中
//进度默认值,范围在0-1之间,不可以设置最大值或者最小值
progressView.progress = 0.5;
// //设置进度条的颜色
progressView.trackTintColor = [UIColor redColor];
//设置进度条上进度的背景图片
progressView.progressImage = [UIImage imageNamed:@"mtxx16"];
//设置进度值并动画显示
[progressView setProgress:0.7 animated:YES];
[self.view addSubview:progressView];
UIKit---UIActivitylndicatorView
//创建活动指示器
UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(250.0, 20.0, 30.0, 30.0)];
//属性设置,我的为大型白色指示器
activityView.activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;
/*
UIActivityIndicatorViewStyleWhiteLarge 大型白色指示器
UIActivityIndicatorViewStyleWhite 标准尺寸白色指示器
UIActivityIndicatorViewStyleGray 灰色指示器,用于白色背景
*/
//指示器停止后自动隐藏则设置为YES,NO是停止后指示器仍然会显示
activityView.hidesWhenStopped = NO;
//启动
[activityView startAnimating];
//停止
[activityView stopAnimating];
[self.view addSubview:activityView];
从零开始学习IOS(UIProgressView、UIActivitylndicatorView) 属性
标签:
原文地址:http://www.cnblogs.com/mybelief/p/4237161.html