before, i display the slider of MPVolumeView, and i can change the system volume by dragging the slider.
now i want to promote it adding an icon to set the value.
change the slider value by moving the icon. the target function of the slider is 'sliderChanged:', for a manual setting of slider value, the UIControlEventValueChanged will not be automatically called, so I use [slider sendActionForControlEvent:UIControlEventValueChanged] to call the function 'sliderChanged:', it will work, but the system volume retains. will not UIControlEventValueChanged by manually setting call the change of system value? and what is the relation between them?
p.s (1) if i immediately drag the slider, the position of the icon and system volume WOULD change, if i push the volume button on the side of ipad, the position of the icon and slider value WOULD change , but if i only move the icon, the slider value WOULD change, but system volume DO NOT.
(2) if the slider shows, the system volume icon in the center of screen WOULD NOT show, only if the slider hides, the system icon can show.
some codes here , not complete.
- (void) loadView{
MPVolumeView *volumeView = [[[MPVolumeView alloc]init ] retain];
volumeView.showsVolumeSlider = NO ;
for (UIView *view in volumeView.subviews){
if ([view isKindOfClass:[UISlider class]]){
slider = (UISlider *) view;
NSLog(@"音量加载成功");
break;
}
}
dot = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"dragPoint.png"]];
[self addSubview:slider];
float value = slider.value;
float arctagle = M_PI / 2 * value;
float x = 200 * (1 - cosf(arctagle));
float y = 200 * (1 - sinf(arctagle));
dot.center = CGPointMake(x, y);
[self addSubview:dot];
[slider addTarget:self action:@selector(sliderChanged:) forControlEvents:UIControlEventValueChanged];
}
- (void)sliderChanged:(id)sender{
UISlider *sli = (UISlider *) sender;
float value = sli.value;
NSLog(@"音量大小为%f",value);
float arctagle = M_PI_2 * value;
float x = 200 * (1 - cosf(arctagle));
float y = 200 * (1 - sinf(arctagle));
dot.center = CGPointMake(x, y);
}
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch * touch = [touches anyObject];
if (self == [touch view]){
CGPoint touchPoint = [touch locationInView:self];
float arctagle = atanf( (200 - touchPoint.y ) / ( 200 - touchPoint.x ) );
if (arctagle<0 || arctagle>M_PI_2) return;
NSLog(@"(%f,%f)",touchPoint.x,touchPoint.y);
[slider setValue:arctagle/M_PI_2 animated:YES];
[slider sendActionsForControlEvents:UIControlEventValueChanged];
}
}