Setting the currentValue of the slider directly works perfectly. When I try to set it in an animation though the drawn elements are not properly rendered.
This is how I tried to animate:
[UIView animateWithDuration:1.f animations:^{
self.hourSlider.currentValue = 50;
}];
It would be cool to have a setCurrentValue:animated: similar to UIProgressView's setProgress:Animated:.
Setting the currentValue of the slider directly works perfectly. When I try to set it in an animation though the drawn elements are not properly rendered.
This is how I tried to animate:
It would be cool to have a
setCurrentValue:animated:similar toUIProgressView'ssetProgress:Animated:.