标签:style blog color io 使用 ar strong 文件 sp
1.问题
2.
UIProgressViewStyleBar 跟 UIProgressViewStyleDefault 相似,不过这是用于添加到 toolbar 中的进度视图。
- (void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; self.progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleBar]; self.progressView.center = self.view.center; self.progressView.progress = 0.5f; [self.view addSubview:self.progressView]; }
标签:style blog color io 使用 ar strong 文件 sp
原文地址:http://www.cnblogs.com/safiri/p/4028247.html