我使用AVAudioPlayer编写了一个播放音频的应用程序。应用程序启动后,我按下iPhone左侧的2个按钮调整音量,出现一个弹出窗口
这是我实施的代码
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[self becomeFirstResponder];
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
NSError *setCategoryError = nil;
BOOL success = [audioSession setCategory:AVAudioSessionCategoryPlayback error:&setCategoryError];
NSError *activationError = nil;
success = [audioSession setActive:YES error:&activationError];
当我按下iPhone左侧的按钮调节音量时,我看不到弹出窗口。为什么不出现?
如何在播放音频时显示弹出窗口以调节音量?
答案 0 :(得分:0)
要让用户在应用中从界面调整/查看音量,请使用MPVolumeView。