浏览UIWebView中的文件夹

时间:2010-12-18 02:15:07

标签: iphone path uiwebview hyperlink nsurl

我的问题如下。我对在UIWebView中加载资源的路径感到有点困惑。我想让我的链接活跃起来。目前,WebView没有获取其他文件夹中的资源(.css,.html),而它们之间的链接是正确的。你知道怎么解决这个问题吗? 我现在正在这样做

NSString* path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]; NSString* htmlString = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil]; [WebView loadHTMLString:htmlString baseURL:[NSURL fileURLWithPath:path]];

感谢您的阅读!

1 个答案:

答案 0 :(得分:1)

你可以尝试这样做,它可能有用:

[webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"webPage" ofType:@"html"]]]];