ios处理播放音频时的中断

      你想让你的AVAudioPlayer 实例在被打断后恢复播放,例如来电时 ,那么在你的AVAudioPlayer 实例的 delegate 对象中实现 AVAudioPlayerDelegate协议的audioPlayerBeginInterruption:audioPlayerEndInterruption:withFlags:方法: 

-(void)audioPlayerBeginInterruption:(AVAudioPlayer*)player{
/*

音频会话被中断。玩家将在这里暂停

*/

}

-(void)audioPlayerEndInterruption:(AVAudioPlayer*)playerwithFlags:(NSUInteger)flags{
     if(flags== AVAudioSessionInterruptionFlags_ShouldResume&&player!= nil)

{
       [
player play];
}

      当中断发生时,AVAudioPlayer 实例的 audioPlayerBeginInterruption: delegate 方法会被调用。这时,你的音频 session 已经被打断了。如果是来电,用户只能听到铃声。当通话结束或用户拒绝来电后,AVAudioPlayer 类的 udioPlayerEndInterruption:withFlags: delegate 方法会被调用。如果参数 withFlags 包含AVAudioSessionInterruptionFlags_ShouldResume 标识,你就可以用 AVAudioPlayer 的播放实例来立即恢复播放音频。 


你可能感兴趣的:(ios)