清除NSURLConnection缓存

moe*_*eth 26 objective-c nsurlconnection nsurlcache ios

有没有办法清除NSURLConnection缓存?

我用它来下载一些字符串但我仍然得到相同的字符串,即使我从我的服务器更改了它.

Ben*_*n-G 61

您可以使用以下方法清除缓存:

OBJ-C

[[NSURLCache sharedURLCache] removeAllCachedResponses];
Run Code Online (Sandbox Code Playgroud)

迅速

 URLCache.shared.removeAllCachedResponses()
Run Code Online (Sandbox Code Playgroud)


Rob*_*ill 14

您在创建NSURLRequest对象时指定缓存策略.将cachePolicy属性设置为NSURLRequestReloadIgnoringCacheData或使用initWithURL:cachePolicy:timeoutInterval:initializer.请参阅缓存策略文档.