Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
App 使用 UIWebView,用户注销时要注意和清除的缓存区域有哪些。
Cache.db ApplicationCache.db(如果适用) HTML5 数据库 Cookies
1. 还有什么要寻找的吗?2. 如何清除保存的密码或表单数据?
Once try with clearing NSHTTPCookies.....Use this code.
NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (NSHTTPCookie *each in cookieStorage.cookies { [cookieStorage deleteCookie:each]; }