gpt4 book ai didi

ios - 如何清除 SFSafariViewController 凭据?

转载 作者:搜寻专家 更新时间:2023-10-30 22:59:56 28 4
gpt4 key购买 nike

我在 Swift 2 中使用 SFSafariViewController 在装有 ios 9.1 (13B143) 的 iPad Air 2 上显示网页。每个网页都需要用户提供凭据。但是,当用户按下注销按钮时,我需要清除这些凭据。我试过使用以下内容:

  let allCreds = NSURLCredentialStorage.sharedCredentialStorage().allCredentials
for (protectionSpace, userCredsDict) in allCreds {
for (_, cred) in userCredsDict {
print("DELETING CREDENTIAL")
NSURLCredentialStorage.sharedCredentialStorage().removeCredential(cred, forProtectionSpace: protectionSpace, options: ["NSURLCredentialStorageRemoveSynchronizableCredentials" : true])
}

}
// Clear cookies
if let cookies = NSHTTPCookieStorage.sharedHTTPCookieStorage().cookies {
for (cookie) in cookies {
print("DELETING COOKIE")
NSHTTPCookieStorage.sharedHTTPCookieStorage().deleteCookie(cookie)
}
}

// Clear history
print("CLEARING URL HISTORY")
NSURLCache.sharedURLCache().removeAllCachedResponses()
NSUserDefaults.standardUserDefaults().synchronize()

但它不起作用。事实上,“DELETING CREDENTIAL”和“DELETING COOKIE”永远不会被打印出来。此外,我可以从 iPad 上完全删除应用程序并重新安装它,当我导航回 web url 时,凭据仍然被缓存。我发现清除凭据的唯一方法是关闭 iPad,然后重新开机。

问题:如何以编程方式清除凭据?

最佳答案

所以我就此打开了 Apple“技术支持事件”。以下是他们的回答摘要:SFSafariViewController 在我的应用程序进程之外运行,为了安全起见,我的应用程序不能修改 SFSafariViewController 的状态。换句话说,我的应用程序无法清除 SFSafariViewController 存储的凭据。

关于ios - 如何清除 SFSafariViewController 凭据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34079135/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com