iOS 当前程序播放录音后,其他播放软件(如qq音乐)不能恢复播放

播放音频结束后,通知中断程序中断已经结束,可以恢复播放
在音频播放完毕,加上以下代码

do {
    try AVAudioSession.sharedInstance().setActive(false, with: AVAudioSessionSetActiveOptions.notifyOthersOnDeactivation)
} catch let error as NSError  {
    print(error.localizedDescription)
}

你可能感兴趣的:(iOS 当前程序播放录音后,其他播放软件(如qq音乐)不能恢复播放)