Top "Nsurlcache" questions

NSURLCache is a class that is used in ios developing for caching the responses of the URL.

How to cache using NSURLSession and NSURLCache. Not working

I have a test app setup and it successfully downloads content from the network even if the user switches apps …

ios iphone nsurlsession nsurlcache nsurlsessionconfiguration
Clear NSURLConnection cache

Is there a way to clear NSURLConnection cache? I used that to download some strings but I keep getting the …

ios objective-c nsurlconnection nsurlcache
Remove UIWebView's internal cache

I'm showing a web app in an UIWebView, and sometimes the content of pages will change. After content have been …

ios cocoa-touch caching uiwebview nsurlcache
Prevent NSURLSession from caching responses

Why does it cache responses. It returns previously fetched responses. It even works if turning off the network connection. Resetting …

swift caching nsurlsession nsurlcache nsurlsessionconfiguration
Alamofire - NSURLCache is not working?

I set my cache as below var cacheSizeMemory = 20 * 1024 * 1024 var cacheSizeDisk = 100 * 1024 * 1024 var sharedCache = NSURLCache(memoryCapacity: cacheSizeMemory, diskCapacity: cacheSizeDisk, diskPath: "SOME_PATH") …

swift nsurlcache alamofire
nsurlconnection asynchronous request

First of all the questions are failry simiple.. if you just want to see what they are skip to the …

iphone ios nsurlconnection nsurlrequest nsurlcache
How to set the shared URLCache in swift 3?

This is the code we had in Swift 2. What is the Swift 3 version? I don't see a replacement for setShared. …

swift3 nsurlcache
Is NSURLCache persistent across launches?

I'm looking for a network caching solution for my iOS application that is persistent across launches. I started to read …

ios nsurlcache
NSURLCache and ETags

Does NSURLCache transparently handle ETags received by server? I mean: does it automatically store ETags for each URL request and …

ios etag nsurlcache
Pre-cache Images for AFNetworking's UIImageView category

When my app loads, I pull down a JSON representation of 99 objects. Each object has an 'image_url' field, which …

objective-c ios caching afnetworking nsurlcache