我有下面的代码将 cookie 从 general 复制HTTPCookieStorage
到我的 webview 的 cookie 存储中。复制所有 cookie 后,我加载 webview
let webView = WKWebView(frame: containerView.bounds, configuration: WKWebViewConfiguration())
webView.navigationDelegate = navigationDelegate
containerView.addAndFillSubview(webView)
guard let sharedCookies = HTTPCookieStorage.shared.cookies else {
return
}
// For each cookie in the common store, set it in the WKWebView's store.
for sharedCookie in sharedCookies {
// Add a block to the dispatch group every time a cookie begins to be set in the WKWebView's store.
wkSetCookieDispatchGroup.enter()
webView.configuration.websiteDataStore.httpCookieStore.setCookie(sharedCookie) {
// Release a block from the dispatch group every time a cookie is successfully set in the WKWebView's store.
wkSetCookieDispatchGroup.leave()
}
}
// Wait for all the cookies to be successfully set (all blocks in the wkSetCookieDispatchGroup to be released)
wkSetCookieDispatchGroup.notify(queue: .main) {
// Load url in webView
}
这段代码第一次运行时就可以工作——所有的 cookie 都被设置,setCookie
完成处理程序被调用并且调度组被通知。
但是,在关闭此 Web 视图并打开它setCookie
的 n 次运行(通常是 3 或 4 次)之后,完成处理程序会停止返回,通常是无限期地返回。有一些竞争条件正在发生,因为如果我设置断点并在每次 web 视图打开时点击它们,这个问题就永远不会发生。发生一次后,设置断点有时会使其重新开始工作,有时什么也不做。
注意:这只发生在设备上。在模拟器上,这永远不会发生。
没有关于setCookie
completionHandler 何时应该返回或不返回的文档,而且这是一个竞争条件,当你有断点时通常不会发生这种情况,这使得调试变得异常困难。
有没有其他人经历过这个?有什么建议吗?我尝试在几个地方明确设置 WKProcessPool,但没有成功。我尝试在创建配置之前和之后创建 Web 视图。我已经尝试了很多东西,但仍然失败了