[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 秒未満でアニメーション化されます。