我正在为iPad编写UI,部分UI需要某些部分的进度条。但是,我发现配置UIProgressView很困难。其中一个要求是进度视图的端点是方形的,但是,我无法通过图层的角半径属性来配置它:
fProgressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleBar];
fProgressView.layer.borderColor = [UIColor whiteColor].CGColor;
fProgressView.progress = 0.5f;
fProgressView.progressImage = nil;
fProgressView.trackImage = nil;
fProgressView.trackTintColor = self.fPatientListPanelColor;
fProgressView.progressTintColor = [UIColor whiteColor];
[fProgressView.layer setCornerRadius:1.0f];
[self.view addSubView:fProgressView]
我发现我也无法控制它的高度。关于如何克服这些问题的任何想法?
答案 0 :(得分:0)
显然没有办法做到这一点,所以我最终推出了自己的版本。