网页播放视频时没声音
2020-03-20 本文已影响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];
、、、