Clear NSURLConnection cache

moeseth picture moeseth · Oct 26, 2011 · Viewed 19k times · Source

Is there a way to clear NSURLConnection cache?

I used that to download some strings but I keep getting the same strings even though I changed that from my server.

Answer

Ben-G picture Ben-G · Feb 12, 2013

You can clear the cache explicitly using:

obj-c

[[NSURLCache sharedURLCache] removeAllCachedResponses];

swift

 URLCache.shared.removeAllCachedResponses()