ドキュメント ディレクトリにフォルダーがあり、そのフォルダーに main.html ページがあります。その html ページを webview で開きたいのですが、だれか助けてもらえますか?
質問する
361 次
3 に答える
1
これを試して。
//First get the path of the documents directory
NSString *documentsDirectoryPath = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"main.html"];
//Load webview
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@", documentsDirectoryPath];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webviewForHelp loadRequest:request];
于 2012-12-14T11:53:43.307 に答える
0
NSString *htmlFilePath = [[NSBundle mainBundle]pathForResource:@"main" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFilePath encoding:NSUTF8StringEncoding error:nil];
[webView loadHTMLString:htmlString baseURL:nil];
于 2012-12-14T12:03:32.890 に答える
0
パスを取得し、そのパスDocumentDirectory
に追加しますmain.html
。
NSString *documentPath = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"main.html"];
次に、を使用してロードします
NSURL* address = [NSURL fileURLWithPath:documentPath];
NSURLRequest* request = [NSURLRequest requestWithURL:address] ;
[webView loadRequest:request];
于 2012-12-14T11:56:09.663 に答える