I\'m trying to dynamically configure the track color on a UISlider.
This line of code works perfectly for setting the low side of the slider track.
[
IOS 8.3
It's works with theses methods :
[slider setMinimumTrackTintColor:[UIColor orangeColor]];
[slider setMaximumTrackTintColor:[UIColor blueColor]];
OR :
slider.minimumTrackTintColor = [UIColor orangeColor];
slider.maximumTrackTintColor = [UIColor blueColor];
EDIT
Sorry, I had to be wrong during my tests ... But I can not change maximumTrackTintColor via Interface Builder....
Use above methods if you want change maximumTrackTintColor of UISlider