save html page with the images,javascript and css in one folder in iphone application
问题 I want to save webpage in document directory with the images,css and javascripts etc.. I have done below code : But it only generates the html file.. NSURL *url = [NSURL URLWithString:@"http://www.apple.com"]; NSData *urlData = [NSData dataWithContentsOfURL:url]; [urlData writeToFile:filePath atomically:YES]; Any idea or suggestion is most welcome. Thanks 回答1: The ASIHTTPRequest project has a class called ASIWebPageRequest which is designed to do exactly what you want. If you're okay with