1

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 ?

Monika Patel
  • 2,287
  • 3
  • 20
  • 45

1 Answers1

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