TL;DR:Does anyone know if requests made by an app via AFNetworking
/NSURLConnection
get stored and persisted in NSURLCache
between re-installs of the app?
Background: I am troubleshooting a bizarre bug affecting some users of a shipping app, which persists across app-reinstalls and which could potentially be explained by a bad cached copy of a previous response.
The app uses AFNetworking, which sits on top of NSURLConnection
, and therefore uses NSURLCache
.
There is no explicit NSURLCache
configuration within the app.
Hence I'm keen to know whether responses can remain in an NSURLCache past the lifetime of the app installation which originally made the request.