在文档目录的webview中以html显示图像

时间:2011-03-11 06:53:58

标签: iphone ios uiwebview uikit

我想在html中显示一个图像,该图像显示在App的Document目录的UIWebView上。

有人可以建议我如何做到这一点吗?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:-2)

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

然后您可以像这样参考您的图片:

   <img src="myimage.png">