I am working on WKWebView and want to support file downloading and displaying in Quick Look. Below is the format of html tag
< a href=https://abc/p/docs/DownloadTest.xlsx>DownloadTest.xlsx< /a>"
In Android: The above code is working fine in android. We have Download Listener in Webview. It will detect download and gives call back Android webview: download files like browsers do
In iOS: The first thing i would like to ask, is there any callback in WKWebView which identify download link from the same html or need to check manually in decidePolicyFor navigationAction delegate?