1

Is there a way to download an entire webpage for offline viewing with the iPhone SDK? I can use NSString with the contents of the URL, but that would just give me the HTML and no images. Is there any way to do it?

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
Tushar Chutani
  • 1,522
  • 5
  • 27
  • 57

1 Answers1

2

The popular open source library ASIHTTPRequest has a class that will do just this for you: download all HTML, images, and other resources associated with the page you're requesting.

It's called ASIWebPageRequest, and you can read the documentation and download it from here: http://allseeing-i.com/ASIHTTPRequest/ASIWebPageRequest

lxt
  • 31,146
  • 5
  • 78
  • 83