[UIView animateWithDuration:10000 animations:^{
[self.RecomendedBar setProgress:self.whatProgressbarShouldBe animated:NO];
}];
很明显,我在一个动画块中设置了进度,我将其时间设置为 10k
然而它还是那么快。不到1秒。
事实上,如果我这样做:
[self.RecomendedBar setProgress:self.whatProgressbarShouldBe animated:NO];
[UIView animateWithDuration:10000 animations:^{
}];
即使进度视图栏在动画块之外,它仍然以不到 1 秒的时间进行动画处理。