longitachi / ZLPhotoBrowser

Wechat-like image picker. Support select photos, videos, gif and livePhoto. Support edit image and crop video. 微信样式的图片选择器,支持预览/相册内拍照及录视频、拖拽/滑动选择,编辑图片/视频,支持多语言国际化等功能;
MIT License
4.8k stars 975 forks source link

ZLCustomCamera的deinit里默认执行AVAudioSession.sharedInstance().setActive(false, options: .notifyOthersOnDeactivation) #921

Open ddisfriend opened 3 months ago

ddisfriend commented 3 months ago

ZLCustomCamera控制器的deinit方法能不能这样改: if cameraConfig.allowRecordVideo { try? AVAudioSession.sharedInstance().setActive(false, options: .notifyOthersOnDeactivation) } 毕竟如果没有allowRecordVideo = true的话,直接false会中断app里其他的AVAudioSession行为。