How can I change the tintcolor of the slider in a MPVolumeView? Instead of blue I want to display a different color.
How to change the tintcolor of the slider in a MPVolumeView?
4.2k Views Asked by murze At
2
There are 2 best solutions below
0

After you alloc
volumeView = [[MPVolumeView alloc] initWithFrame:CGRectMake(40, 145, 270, 23)];
Just search the MPVolumeView subviews and get the slider
for (id current in volumeView.subviews) {
if ([current isKindOfClass:[UISlider class]]) {
UISlider *volumeSlider = (UISlider *)current;
volumeSlider.minimumTrackTintColor = [UIColor redColor];
volumeSlider.maximumTrackTintColor = [UIColor lightGrayColor];
}
Put the colors you like in UIColor and all done. If you need to customize further, treat volumeSlider as a standard UISlider.
You need to customize
UISlider
. You can do it like this:Result:
Here is some backgrounds for sliders and example image how they looks:
Slider backgrounds:
Example:
More information here.