In my iOS app I'm using a WKWebView
to display a jquery datatable with CSV button to export data (a page very similar to https://datatables.net/extensions/buttons/examples/initialisation/export.html). Now, when I tap on CSV button I would handle data to show it at the user, by QLPreviewController
for example. On iOS Safari browser, when tap on CSV button, another tab is opened with data. In my WkWebView
nothing happens.
Is there anybody who can help me to achieve my goal?
I solved by myself. I'm able to handle the tap by
optional func webView(_ webView: WKWebView, createWebViewWith configuration: WKWebViewConfiguration, for navigationAction: WKNavigationAction, windowFeatures: WKWindowFeatures) -> WKWebView?
method ofWKUIDelegate
EDIT - Added code as requested by @SeriousSam in comment