Hi resolve it
class ViewController: UIViewController, WKNavigationDelegate, WKUIDelegate{
@IBOutlet weak var webview: WKWebView!
override func viewDidLoad() {
super.viewDidLoad()
webview.configuration.defaultWebpagePreferences.allowsContentJavaScript = true
webview.configuration.allowsInlineMediaPlayback = true
webview.configuration.allowsAirPlayForMediaPlayback = true
webview.configuration.allowsPictureInPictureMediaPlayback = true
webview.allowsBackForwardNavigationGestures = true
webview.allowsLinkPreview = true
webview.uiDelegate = self
webview.navigationDelegate = self
and add this option