🔥The screen opening advertising solutions - 开屏广告、启动广告解决方案-支持静态/动态图片广告,mp4视频广告,全屏/半屏广告、兼容iPhone/iPad. 【 Github下载不了/下载慢 可以访问国内下载地址: https://gitee.com/CoderZhuXH/XHLaunchAd】
3.69k
stars
740
forks
source link
AVAudioSession获取和释放音频焦点都会卡一下UI #249
Open
JC-Sung opened 3 years ago
有没有发现当是视频广告时,点击跳过按钮,界面会卡一下 原因是stopVideoPlayer这个方法里释放音频的方法就会卡一下UI
这样写就不卡,Apple文档关于AVAudioSession有写
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ [[AVAudioSession sharedInstance] setActive:NO withOptions:AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation error:nil]; });
获取音频焦点也是一样