ios - URLCache caches URL on Xcode simulator but not device -


my urlcache caches urls in xcode simulator, not on real device. narrowed code down example:

if let urlcache = sessionmanager().session.configuration.urlcache {      // returns nil, because there's nothing in cache     print(urlcache.cachedresponse(for: urlrequest))      // put url in cache     urlcache.storecachedresponse(cachedurlresponse(response: response, data: responsedata), for: urlrequest)      // url should in cache, it's still nil!     print(urlcache.cachedresponse(for: urlrequest)) } 

i'm confused this. ideas?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

What is happening when Matlab is starting a "parallel pool"? -

php - Cannot override Laravel Spark authentication with own implementation -