我的要求是在UIWebView中加载本地存储的图像。
我的代码如下:
NSBundle *mainBundle = [NSBundle mainBundle];
NSURL *homeIndexUrl = [mainBundle URLForResource:@"web" withExtension:@"html"];
NSURLRequest *urlReq = [NSURLRequest requestWithURL:homeIndexUrl];
[self.webView loadRequest:urlReq];
我的html文件如下:
<html>
<body>
<img src=“Initial.png”>
</body>
</html>
我已经提到了以下链接,但我没有得到我的最终输出
任何帮助都会很明显。
答案 0 :(得分:1)
这件事对我有用:
图片不应该在xcassettes中。
NSString *imagePath = [[NSBundle mainBundle] pathForResource:imageFileName ofType:imageFileExtension];
NSString *imgHTMLTag = [NSString stringWithFormat:@"<img src=\"file://%@\" />", imagePath];
NSURL *Url = [mainBundle URLForResource:@"img_icon" withExtension:@"png"];
[self.webView loadHTMLString:imgHTMLTag baseURL:Url];