将图像加载到网络视图中
如何将本地图像加载到 UIWebView 中的 html 页面中,调用该 UIWebView 时
[self.webView loadHTMLString:htmlSourceCode baseURL:externPageUrl];
我知道我可以通过更改 baseURL 来获取图像。然而,就我而言,这是不可能的。 我还尝试通过将 file://pathToImage/myimage.png
添加到 html 中来实现此目的,但是如果不更改 baseURL,这将不起作用。
有没有办法不必处理shouldStartLoadWithRequest 方法?
How can I have a local image loaded into a html page in a UIWebView that is called with
[self.webView loadHTMLString:htmlSourceCode baseURL:externPageUrl];
I know I can get the image by changing the baseURL. However, in my case, that is not possible.
I also tried doing it by adding file://pathToImage/myimage.png
to the html, but that doesn't work without changing the baseURL.
Is there any way without having to handle the shouldStartLoadWithRequest
method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将图像 src 设置为图像文件的名称,假设它与本地 HTML 文件位于同一文件夹中。
Just set the image src to the name of the image file, assuming it is in the same folder as the local HTML file.
我通过直接将图像字节加载到html中解决了这个问题:
I solved it by loading the image bytes into the html directly: