XHLaunchAd icon indicating copy to clipboard operation
XHLaunchAd copied to clipboard

AVAudioSession获取和释放音频焦点都会卡一下UI

Open JC-Sung opened this issue 3 years ago • 0 comments

有没有发现当是视频广告时,点击跳过按钮,界面会卡一下 原因是stopVideoPlayer这个方法里释放音频的方法就会卡一下UI

这样写就不卡,Apple文档关于AVAudioSession有写

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ [[AVAudioSession sharedInstance] setActive:NO withOptions:AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation error:nil]; });

获取音频焦点也是一样

JC-Sung avatar Mar 04 '21 04:03 JC-Sung