当前位置: 代码迷 >> 综合 >> UIProgressView 进度条
  详细解决方案

UIProgressView 进度条

热度:31   发布时间:2023-12-17 01:09:36.0
//进度条--主要用在下载等需要进度显示的地方
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];