美文网首页
网页播放视频时没声音

网页播放视频时没声音

作者: 小六玩的并不六 | 来源:发表于2020-03-20 10:16 被阅读0次

、、、
在app delegate中添加
//设置网页播放视频时的声音
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
BOOL ok;
NSError *setCategoryError = nil;
ok = [audioSession setCategory:AVAudioSessionCategoryPlayback error:&setCategoryError];
if (!ok) {
NSLog(@"%s setCategoryError=%@", PRETTY_FUNCTION, setCategoryError);
}

webView设置
[self.webView setMediaPlaybackRequiresUserAction:NO];
、、、

相关文章

网友评论

      本文标题:网页播放视频时没声音

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