我的要求是在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>
我已经引用了以下链接,但没有得到最终的输出
link1 link2
任何帮助将是可观的。
最佳答案
这件事对我有用:
该图像不应位于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];
关于ios - 在UIWebView中加载本地存储的图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32015931/