Checking AppData/Library/Caches/com.mycompany.myapp/fsCachedData the total bytes used for files in this directory is significantly more than the [NSURLCache sharedURLCache].diskCapacity
What is going on, am I missing something as to why?
Checking AppData/Library/Caches/com.mycompany.myapp/fsCachedData the total bytes used for files in this directory is significantly more than the [NSURLCache sharedURLCache].diskCapacity
What is going on, am I missing something as to why?
Just to give a better understanding the fsCachedData directory on iOS is about 400 MB in size and I believe that the capacity of the default shared URL cache [i.e. I am not explicitly setting the NSURLCache sharedURLCache] is 10MB.
If I removeAllCachedResponses from the sharedURLCache the directory empties...
Any help appreciated about what is going on and if I need to enum the directory and check total file size usage and then clear it myself or if I am missing something about what should be going on here?