Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is HTTP caching in iPhone and how it helps in caching images? How does it handles the image refreshing?

I will be having image URL with me. I was planning to use HTTPRequest and then saving the image in my file system. Then came across this term "HTTP Caching".

Please explain.

share|improve this question

3 Answers

up vote 2 down vote accepted

Check out HJCache, built to make loading and caching images especially easy for iOS apps. http://www.markj.net/hjcache-iphone-image-cache/

share|improve this answer
Thank you for this link. Do you have idea on how to implement NSURLRequest and NSURLConnection with caching policy? – Abhinav Jan 21 '11 at 21:40

Check out this link, this might help you: Image Caching tutorial

share|improve this answer

Check out SLImageCache for persistent caching: https://github.com/slavingia/SLGlobalImageCache

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.