I have a UISlider with value between 10 and 100. I works very well.
Except I\'d like to be able to increase the values by 5 rather than 1 by 1.
Now, if I move th
use this code for increasing the slide value by 5
sliderPosition = (int)(round(mySlider.value/5)*5);