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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -