Skip to content

Instantly share code, notes, and snippets.

@astannard
Created February 2, 2015 08:24
Show Gist options
  • Save astannard/894c2100f6ed33ab628e to your computer and use it in GitHub Desktop.
Save astannard/894c2100f6ed33ab628e to your computer and use it in GitHub Desktop.
iOS swift clear cache on memory warning
func applicationDidReceiveMemoryWarning(application: UIApplication) {
NSURLCache.sharedURLCache().removeAllCachedResponses()
}
@Dixit7405
Copy link

Thanks for sharing this

@Salarsoleimani
Copy link

swift 4 version is :
URLCache.shared.removeAllCachedResponses()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment