[SOLVED] Sound not working on iOS

I found the solution, there is a way to override the autoplay ban but you need to adjust your Xcode file in order to do that.

You just need to add the line in your view controller.m file

self.Webview.mediaPlaybackRequiresUserAction = false;

1 Like