本文主要是介绍UIProgressView 进度条,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
//进度条--主要用在下载等需要进度显示的地方
UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];progressView.frame = CGRectMake(10, 40, 300, 30);progressView.tag = 1;//设置进度,范围0.0~1.0
//progressView.progress = 0.5;//[progressView setProgress:0.5 animated:YES];
这篇关于UIProgressView 进度条的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!