美文网首页
swift-静音模式下播放声音处理

swift-静音模式下播放声音处理

作者: biubiuboom | 来源:发表于2020-05-14 18:39 被阅读0次
///写在Appdelegate didFinishLaunchingWithOptions下
       do {
            try AVAudioSession.sharedInstance().setCategory(AVAudioSession.Category.playback)
            try AVAudioSession.sharedInstance().setActive(true)
            
        } catch let error as NSError {
            print("error: \(error.localizedDescription)")
        }

相关文章

网友评论

      本文标题:swift-静音模式下播放声音处理

      本文链接:https://www.haomeiwen.com/subject/iazdnhtx.html