I have used following code

for (UIView *view in [volumeView subviews]){
    if ([[[view class] description] isEqualToString:@"MPVolumeSlider"]) {
        volumeViewSlider = (UISlider *) view;
    }
}

//[volumeViewSlider setBackgroundColor:[UIColor colorWithRed:1.00 green:0.0 blue:0.0 alpha:1.0]];
UIImage *stetchLeftTrack = [[UIImage imageNamed:@"leftslide.png"]
                            stretchableImageWithLeftCapWidth:10.0 topCapHeight:0.0];
UIImage *stetchRightTrack = [[UIImage imageNamed:@"rightslide.png"]
                             stretchableImageWithLeftCapWidth:10.0 topCapHeight:0.0];
//    [customSlider setThumbImage: [UIImage imageNamed:@"slider_ball.png"] forState:UIControlStateNormal];
[volumeViewSlider setMinimumTrackImage:stetchLeftTrack forState:UIControlStateNormal];
[volumeViewSlider setMaximumTrackImage:stetchRightTrack forState:UIControlStateNormal];
[volumeViewSlider setMinimumValueImage:[UIImage imageNamed:@"SpeakerSoft.tif"]];
[volumeViewSlider setMaximumValueImage:[UIImage imageNamed:@"SpeakerLoud.tif"]];


[NSTimer scheduledTimerWithTimeInterval:60.0 target:self selector:@selector(changeTheTimer) userInfo:nil repeats:NO];
}

-(void)changeTheTimer{
[volumeViewSlider setValue:0 animated:YES];
NSLog(@"Value is set to 0");

}

I want to stop all playbacks after one minute , but slider moves to zero and leaves of effect of master volume , please help

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can certainly make use of the UISlider instance method

- (void)setValue:(float)value animated:(BOOL)animated

This will reduce the slider value with or without animation.

UPDATE

Check this link on Controlling Master Volume

link|improve this answer
you can see the timer method i have used it , but its sets slider value to 0 but no effect on volume – Programmer mind Jun 2 '11 at 5:02
1  
This only changes the value for the slider you have to set the volume according to this value – 7KV7 Jun 2 '11 at 5:07
pls see if this link helps blog.stormyprods.com/2008/09/… – 7KV7 Jun 2 '11 at 5:09
is there any other way to control master volume of iphone except MPVolumeView – Programmer mind Jun 2 '11 at 5:11
see the link in my updated answer – 7KV7 Jun 2 '11 at 5:13
show 2 more comments
feedback

I do not exactly understand you question. http://www.youtube.com/watch?v=-CDcsaFC-tw has a tutorial on using a slider and is pretty understandable. Hope it helps.

link|improve this answer
issue is not slider but slider of MPVolumeSlider , how to sets its value without touch – Programmer mind Jun 2 '11 at 5:03
feedback

Your Answer

 
or
required, but never shown

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