iphone uiwebview download complete page with CSS and Images
问题 In my app there's a uiwebview that loads a url. I am using the following line to save the HTML of the page loaded locally to be able to view it offline. NSString* html=[webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTagName('html')[0].innerHTML"] The problem is only the HTML of the document that gets saved, I want to save also the images and the CSS along with the HTML so that the user see the page as if he is online. just like "save web page complete" or something