次のコード行を使用して、html ページのコンテンツをダウンロードし、ディレクトリに保存しています。
NSURL *yoyoyo = [[NSURL alloc] initWithString:@"www.google.com"];
NSData *data = [[NSData alloc] initWithContentsOfURL:yoyoyo];
//NSData *data = [NSData dataWithContentsOfURL:[NSURL UrlWithString:url]];
//use this data to write to any path as documentdirectory path + filename.html
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *htmlFilePath = [documentsDirectory stringByAppendingPathComponent:@"file.html"];
[data writeToFile:htmlFilePath atomically:YES];
NSLog(@"Tile Directory: %@", documentsDirectory);
ドキュメント ディレクトリは次のとおりです。
Tile Directory: /Users/xxxx/Library/Application Support/iPhone Simulator/5.1/Applications/D4B3A4CF-E7D0-4D25-A809-B3D3A170A329/Documents
ただし、ファイルを保存する必要があるパスに到達したときに、html ファイルを表示できません。私は問題を整理することができません。誰か助けてください??