버튼을 눌렀을 때 소리가 나고 볼륨을 조절할 수있는 UISlider를 사용하는 응용 프로그램을 만들고 있습니다. 아이폰의 볼륨을 높이더라도 볼륨이 너무 높거나 너무 낮을 때도 있습니다. full.How 볼륨을 항상 높게 유지할 수 있습니까 ?? 슬라이더 볼륨과 시스템 볼륨을 통합하는 가능한 모든 방법 ?? MPVolumview 내 응용 프로그램을 얻을 것이다 사용 같아요 거부 ... 내가 버튼을 터치에서 사용하고있는 코드는 다음과UIslider Iphone을 사용하여 볼륨 컨트롤?
NSString* resourcePath = [[NSBundle mainBundle] resourcePath];
resourcePath = [resourcePath stringByAppendingString:@"/sound.mp3"];
NSLog(@"Path to play: %@", resourcePath);
player = [[AVAudioPlayer alloc] initWithContentsOfURL:
[NSURL fileURLWithPath:resourcePath] error:&err];
player.delegate = self;
[player play];
player.volume=.50;
player.numberOfLoops=-10;
-(IBAction)slidervaluechanged
{ player.volume=slider.value; }
}