在我的应用程序中,我需要播放从0到最大系统音量的声音(这是一个闹钟应用程序)。
我目前使用AVAudioPlayer
播放声音,MPMusicPlayerController
在警报持续时间内最大化设备的音量
MPMusicPlayerController.applicationMusicPlayer.volume = 1.0;
NSString *fileName = [NSString stringWithFormat:alarm.sound];
fileName = [fileName stringByDeletingPathExtension];
NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:fileName ofType:@"aifc"];
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];
audioPlayer.volume = 0.0;
audioPlayer.numberOfLoops = -1;
[audioPlayer prepareToPlay];
audioPlayer.play;
然后我安排一个计时器来增加音量
timer = [NSTimer scheduledTimerWithTimeInterval:1.0
target:self
selector:@selector(pollTimeForGradualVolumeIncrease)
userInfo:nil repeats:YES];
//逐渐增加音量
- (void)pollTimeForGradualVolumeIncrease
{
timerSecond += 1;
if (audioPlayer.volume < 1.0 && timerSecond % 1 == 0)
{
[audioPlayer setVolume:audioPlayer.volume + 0.02];
UISlider *slider = volumeSliderView.subviews[0];
[slider setValue:1.0 animated:NO];
}
else if (audioPlayer.volume >= 1.0)
{
timerSecond = 0;
timer.invalidate;
timer = nil;
}
}
问题在于设置MPMusicPlayerController.applicationMusicPlayer.volume
有没有办法以最大设备音量播放声音文件而不显示iOS音量变化指示符?
答案 0 :(得分:3)
我在8个月前正在尝试相关的事情,据我记得,如果存在MPVolumeView,iOS则不会显示系统音量变化指标。
如果您实际上不想看到MPVolumeView,我想您可以将其隐藏在另一个视图后面。