美文网首页
UIProgressView动画从小到大

UIProgressView动画从小到大

作者: Roy_Liang | 来源:发表于2018-05-25 11:24 被阅读1808次

UIProgressView设置进度的动画
Q:UIProgressView进度动画效果会从左上角开始,并由小到大?
- (void)setProgress:(float)progress animated:(BOOL)animated

viewDidLoad里

[self.myProgressView3 setProgress:0.00001 animated:NO];
[self.myProgressView3 setProgress:0.0 animated:YES];

[UIView animateWithDuration:5 animations:^{
    [self.myProgressView1 setProgress:0.8 animated:YES];
    [self.myProgressView2 setProgress:0.8 animated:YES];
    [self.myProgressView3 setProgress:0.8 animated:YES];
} completion:^(BOOL finished) {
}];

区别:第二个progressView设置了backgroundColor为灰色

A:让进度动画一开始高度就充满路径

暂时找到的方法是:

[self.myProgressView3 setProgress:0.00001 animated:NO];
[self.myProgressView3 setProgress:0.0 animated:YES];

end~希望您有所收获
——by roy

相关文章

网友评论

      本文标题:UIProgressView动画从小到大

      本文链接:https://www.haomeiwen.com/subject/eueyjftx.html