EFCircularSlider
EFCircularSlider copied to clipboard
Setting currentValue 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:
[UIView animateWithDuration:1.f animations:^{
self.hourSlider.currentValue = 50;
}];
It would be cool to have a setCurrentValue:animated:
similar to UIProgressView
's setProgress:Animated:
.
That is what I wanted , too.
Any ideas on how to achieve this ?