I want to increase UISlider height using color or any other way. I do not want to use image. I do not want to set setMaximumTrackImage & setMinimumTrackImage. How can i implement this ?
Asked
Active
Viewed 2,062 times
1 Answers
3
If you don't want to subclass, you can apply scale transform to the slider
slider.transform = CGAffineTransformMakeScale(2.0f, 2.0f);

Surya Subenthiran
- 2,217
- 1
- 15
- 22