gpt4 book ai didi

ios - 在 UIWebView 中加载本地存储的图像

转载 作者:行者123 更新时间:2023-11-28 21:41:07 25 4
gpt4 key购买 nike

我的要求是在 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com