我正在創建一個應用程序,在按下按鈕時使用可以調整音量的UISlider播放聲音。有時甚至在將iphone的音量增加到音量之後,音量太高,有時甚至太低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; }
}