ios在UIProgressView中调整边缘

时间:2013-09-20 17:23:52

标签: ios user-interface

我正在为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]

我发现我也无法控制它的高度。关于如何克服这些问题的任何想法?

1 个答案:

答案 0 :(得分:0)

显然没有办法做到这一点,所以我最终推出了自己的版本。