网页播放视频时没声音

、、、
在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];
、、、

你可能感兴趣的:(网页播放视频时没声音)