How to access WKWebView asset folder. I want to get one image form WKWebView asset folder. When web is loaded. Is it possible to access asset folder of WKWebView like accessing cookies. I tried WKWebsiteDataStore and NSSearchPathForDirectoriesInDomains. But I could not located the asset of WKWebView local folder in my application.
Asked
Active
Viewed 217 times
1 Answers
0
There is no apple API that contains the cookies data in local or file folder.
You should go through first Apple Documentation.

Parth
- 634
- 8
- 15
-
We will get cookies from webView.getCookies(for: webView.url?.host) { data in – Sharat Kannan Jan 29 '19 at 12:43