[UIView animateWithDuration:10000 animations:^{
[self.RecomendedBar setProgress:self.whatProgressbarShouldBe animated:NO];
}];
It's pretty obvious that I set progress within an animation block whose time I set at 10k
Yet it's still so fast. Less than 1 seconds.
In fact, if I do this:
[self.RecomendedBar setProgress:self.whatProgressbarShouldBe animated:NO];
[UIView animateWithDuration:10000 animations:^{
}];
It is still animated with less than 1 seconds even thought the progressview bar is outside animation block.