Hi everyone, how to deny screen mirror function in webview APP

This is my code below

import WebKit

class ViewController: UIViewController, WKNavigationDelegate, WKUIDelegate {

  lazy var webView: WKWebView = {
    let webConfiguration = WKWebViewConfiguration()
    let webView = WKWebView(frame: .zero, configuration: webConfiguration)
    webView.uiDelegate = self
    webView.translatesAutoresizingMaskIntoConstraints = false
    return webView
  }()
   
      setupUI()
      let myURL = URL(string: "https://www.xxx.com”)
      let myRequest = URLRequest(url: myURL!)
      webView.load(myRequest)
       
    }
}

Hi everyone, how to deny screen mirror function in webview APP
 
 
Q