I am trying to disable long press on my WKWebView as it allows to drag and drop of urls which is unwanted on my side. Just to clarify I don't want to disable the WKActionSheet but just the drag & drop feature of the links.
I tried:
webView.allowsLinkPreview = false
and
webView.evaluateJavaScript("document.body.style.webkitTouchCallout='none';")
but these does not seem to have any effect. Anybody have an idea? My app has minimum target iOS 15.