URLCache.shared.removeAllCachedResponses()
URLCache.shared.diskCapacity = 0
URLCache.shared.memoryCapacity = 0
if let cookies = HTTPCookieStorage.shared.cookies {
for cookie in cookies {
HTTPCookieStorage.shared.deleteCookie(cookie)
}
}
Related Posts
iOS中使用URL Scheme進行App跳轉
2018-04-03
[iOS] How to detect touch on UIWebView Ask
2018-01-26