次のコード行を使用して、html ページをダウンロードして保存しています::
NSURL *goo = [[NSURL alloc] initWithString:@"http://www.google.com"];
NSData *data = [[NSData alloc] initWithContentsOfURL:goo];
NSString *html = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; //Remove the autorelease if using ARC
NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
NSLog(@"%@", documentsDirectory);
NSString *htmlFilePath = [documentsDirectory stringByAppendingPathComponent:@"file.html"];
[html writeToFile:htmlFilePath atomically:YES encoding:NSUTF8StringEncoding error:nil];
ダウンロードして保存した後、再利用する必要があります。つまり、アップロードします。しかし、css ファイルと画像ファイルを html ページと一緒にダウンロードできません。
誰かが問題を解決するのを手伝ってくれますか?? ありがとうございます。