I am using a slider in my app. It has the default color black I want to change it to brown.
I followed the 'Changing sliders appearance in SDK help'
I used the code
NSString *path = [[NSBundle mainBundle] pathForResource:@"sliderBrown"
ofType:@"png"];
UIImage *minimumTrackImg = [[UIImage alloc] initWithContentsOfFile:path];
[voiceLevelSlider setMinimumTrackImage:minimumTrackImg
forState:UIControlStateSelected];
but in this case my slider just disappeared.
Please enlighten me on this.