Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using a UISlider in my app but I'd like to use a custom "look-and-feel" for it. I have changed the thumb to my own image but is there a way to change the bar also? I have a bar image I would like to use but can't see how to do this.

I have found how to change the max and min image but not the bar itself.

share|improve this question
I have tried the [slider setMinimumTrackImage:forState:] method but this uses the image and scales it according to where the slider is placed. What I would like is to use a single image across the whole slider that remains static while the thumb is moved across it. Imagine a volume slider with a wedge to represent the relative volumes empty at one end and full at the other. When the slider is moved the wedge remains as it is. This is what I'd like to be able to do. Thanks! – Fogmeister Mar 4 '10 at 12:58
2  
Can you share samples of the custom slider pictures with the users? – Ahsan Jun 4 '11 at 12:12

4 Answers

up vote 31 down vote accepted

You were right to use -setMinimumTrackImage:forState: and -setMaximumTrackImage:forState: methods. What you missed is that you should provide stretchable UIImages to them, the rest is taken care of automagically:

UIImage *sliderLeftTrackImage = [[UIImage imageNamed: @"SliderMin.png"] stretchableImageWithLeftCapWidth: 9 topCapHeight: 0];
UIImage *sliderRightTrackImage = [[UIImage imageNamed: @"SliderMax.png"] stretchableImageWithLeftCapWidth: 9 topCapHeight: 0];
[mySlider setMinimumTrackImage: sliderLeftTrackImage forState: UIControlStateNormal];
[mySlider setMaximumTrackImage: sliderRightTrackImage forState: UIControlStateNormal];

You can use the same image for both the min and max parts.

share|improve this answer
actually, you answer can merge with Steve Melvin's one to make a complete solution. – Shivan Raptor Aug 19 '11 at 15:49
Thanks helped me a lot.. – Arpit Parekh Nov 2 '11 at 12:45
FYI on iOS 5 depending on your slider image, you will get some screwed up tiling – PsychoDad Jan 29 at 8:19

The simplest solution would be to render a UIImage behind the control to represent the track. The thumbknob can be changed with:

[mySlider setThumbImage:[UIImage imageNamed:@"thumb_image.png"] forState:UIControlStateNormal];

A side-effect of this is that the track isn't rendered unless you provide your own. This, combined with the UIImage, provide you with a custom UISlider without you having to subclass anything.

share|improve this answer
3  
Doesn't appear to be true anymore for standard UISliders in iOS 5, unless I've missed something. – Tim Kemp Jan 13 '12 at 21:53
2  
[[UISlider appearanceWhenContainedIn:[self class], nil] setThumbImage:[UIImage...] forState:UIControlStateNormal];. I think you can also do UIControlStateHighlighted to do a "touch down" image. – Hari Karam Singh Aug 6 '12 at 11:00

You need to subclass UISlider and override:

- (CGRect)trackRectForBounds:(CGRect)bounds

Discussion You should not call this method directly. If you want to customize the track rectangle, you can override this method and return a different rectangle. The returned rectangle is used to scale the track and thumb images during drawing.

share|improve this answer

I am doing this but the back bar is not showing perfectly in iOS 5.1 but in iOS 6.0 its displaying

here is my code

 UIImage *stetchLeftTrack = [[UIImage imageNamed:@"spectrum_horizontal_bar.png"]
                                stretchableImageWithLeftCapWidth:15.0 topCapHeight:0.0];
    UIImage *stetchRightTrack = [[UIImage imageNamed:@"spectrum_horizontal_bar.png"]
                                 stretchableImageWithLeftCapWidth:15.0 topCapHeight:0.0];
    [self.slider_Sprectrum setMinimumTrackImage:stetchLeftTrack forState:UIControlStateNormal];
    [self.slider_Sprectrum setMaximumTrackImage:stetchRightTrack forState:UIControlStateNormal];
share|improve this answer
@Hari Karam Singh [[UISlider appearanceWhenContainedIn:[self class], nil] setMinimumTrackImage:stetchLeftTrack forState:UIControlStateNormal]; [[UISlider appearanceWhenContainedIn:[self class], nil] setMaximumTrackImage:stetchRightTrack forState:UIControlStateNormal]; – Dk Kumar Dec 24 '12 at 9:02
Hi Dk Kumar i am too facing same prob in IOS 5 but working in IOS 6.I am using two images for min and Max where both are same.Thumb image is a small transparent glow image.In IOS i could see a line behind the thumb...Can u plz help how you have solved in your case to avoid skewing/stretching... – Dinakar Feb 12 at 15:05
try removing stretchableImageWithLeftCapWidth ... use only [UIImage imageNamed:@"spectrum_horizontal_bar.png"] ... It will start showing the correct colors while sliding the slider. Only one problem I noticed here that it changes the left corner radius of slider when you move to max and min value... I'm looking to its solutions too. – Ans Feb 17 at 8:31
moreover, stretchableImageWithLeftCapWidth has deprecated in iOS 5. use resizableImageWithCapInsets as alternate. – Ans Feb 17 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.