Hacker News new | ask | show | jobs
by jazzychad 5084 days ago
Yes, There is disk caching for NSURLConnection by default, but in my experience it does not cache it across app restarts, so each time the app starts again all the images have to be fetched all over again... SDWebImage gives the persistent disk caching I want.

If I'm misunderstanding what's happening please let me know...

1 comments

NSURLCache does disk caching in iOS 5 and up, but only for http (no https) requests. Use SDURLCache if you want more options there.