我正在使用 avaudioplayer 开发应用程序,它运行良好,但是,我的问题是,如果我的 iPhone 振动模式打开我的应用程序 avaudioplayer 播放音频略低于几秒,我不想在振动模式下播放 avaudioplayer 声音。
这是我的代码:
- (void)viewDidLoad
{
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL
fileURLWithPath:[[NSBundle mainBundle]
pathForResource:@"audio" ofType:@"mp3"]] error:NULL];
audioPlayer.numberOfLoops =-1;
audioPlayer.delegate = self;
audioPlayer.currentTime=0.0f;
[audioPlayer prepareToPlay];
[audioPlayer Play];
}
谁能帮帮我..!
谢谢..!