1

Is there a way I can prevent a UIWebView from playing sound even if the website it is loading plays sound? I want to provide a mute feature in my custom browser.

1 Answers1

0

Set these Parameters to your Webview

self.webView.allowsInlineMediaPlayback = YES;
self.webView.mediaPlaybackRequiresUserAction = NO;

Please take a look at Apple Documentation Link1 Link2

Sagar Shirbhate
  • 801
  • 7
  • 17