UIWebView baseURL和绝对路径

时间:2012-06-27 21:41:57

标签: html uiwebview base-url

我有一个像这样构建的HTML页面:

<html>
  <head>
    <link rel="stylesheet" href="/style.css" />
  </head>
  <body>

  </body>
</html>

它存储在我的文档目录中:

/Users/username/Library/Application Support/iPhone Simulator/5.1/Applications/12345-ID/Documents/mysite/index.html

我还将style.css存储在文档目录中:

/Users/username/Library/Application Support/iPhone Simulator/5.1/Applications/12345-ID/Documents/mysite/style.css

但现在,当我尝试使用以下内容将html加载到我的webview中时:

NSURL *test = [NSURL URLWithString:@"file:///Users/username/Library/Application Support/iPhone%20Simulator/5.1/Applications/12345-ID/Documents/mysite/"]
[myWebView loadHTMLString:<the content retrieved from index.html> baseURL:test];

未加载css,当我使用NSURLProtocol拦截对样式表的请求时,我可以看到请求是错误的。它试图要求:

  

文件:///style.css

而不是完整的baseURL。现在我可以通过删除html文件中的/style.css前面的/来解决这个问题。但有没有一种简单的方法可以在本机代码中解决这个问题,而无需修改html?

2 个答案:

答案 0 :(得分:12)

以下列方式生成您的路径和基本网址:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[webView loadHTMLString:htmlString baseURL:baseURL];

关于这个主题的精彩博客:

http://iphoneincubator.com/blog/windows-views/uiwebview-revisited

关于这个问题的SO QA

UIWebView and local css file

答案 1 :(得分:2)

删除斜杠是唯一的解决方案