本文介绍了ios9 - 多个WkWebView共享cookie WKProcessPool()不工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
let config = WKWebViewConfiguration();
config.processPool = WKProcessPool()
web = WKWebView(frame: self.frame, configuration: config)
我发现从stactoverflow,wkprocesspool可以共享cookie的多个wkwebview,但它似乎不工作....任何人帮助我~~~~ pls
I found from stactoverflow , that wkprocesspool can share cookie for multiple wkwebview , but it seems like not working.... anyone help me~~~~pls
推荐答案
您必须使用共享的WKProcessPool。但是每次都实例化一个新实例。
You have to use shared WKProcessPool. But you instantiate a new instance each time.
这篇关于ios9 - 多个WkWebView共享cookie WKProcessPool()不工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!