4

I cant believe i cant find answer online - this is what im trying to achieve- Single color for the UISlider bar(no matter where the thumb is)

Dont mind the BG color

s

, but all i can change is one size of the bar(Tint color i guess) :\

s

Any ideas how can i achieve single color all the way?

Anbu.Karthik
  • 82,064
  • 23
  • 174
  • 143
Roi Mulia
  • 5,626
  • 11
  • 54
  • 105
  • Possible duplicate of [UISlider setMaximumTrackTintColor in iOS 7.1](http://stackoverflow.com/questions/22345668/uislider-setmaximumtracktintcolor-in-ios-7-1) – Daniel Storm Jun 05 '16 at 18:09

1 Answers1

6

set

choice -1

yoursliderName.minimumTrackTintColor = [UIColor blueColor];
yoursliderName.maximumTrackTintColor = [UIColor blueColor];

if choice no 1 is not work

choice - 2

see this already answered in stack overflow answer

additional Reference

Community
  • 1
  • 1
Anbu.Karthik
  • 82,064
  • 23
  • 174
  • 143