如何正确设置进度条?

时间:2014-04-03 21:20:03

标签: ios iphone objective-c

我已经做了几个测试,尝试为我目前正在开发的游戏设置进度条:

问题:进度条内部的问题是一个颜色填充并且它从我的角落伸出:

enter image description here

代码:

 //PROGRESS BARS STYLE
_progressOne.layer.borderWidth =0.5f;
_progressOne.layer.borderColor = [[UIColor colorWithRed: 0.345 green: 0.831 blue: 0.973 alpha: 1]CGColor];
//hieght
[self.progressOne setTransform:CGAffineTransformMakeScale(2.0, 3.0)];

用户必须看到寄宿生内的填充物。 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

[[UIProgressView appearance] setProgressTintColor:[UIColor colorWithRed:0 green:175.0/255.0 blue:176.0/255.0 alpha:1.0]];
[[UIProgressView appearance] setTrackTintColor:[UIColor colorWithRed:0.996 green:0.788 blue:0.180 alpha:1.000]];