gpt4 book ai didi

objective-c - 如何在webview中显示本 map 片?

转载 作者:行者123 更新时间:2023-12-03 16:23:25 25 4
gpt4 key购买 nike

我想在webview中显示本 map 片,怎么办?有人有简单的演示吗?非常感谢!!!

最佳答案

最好的方法是将 baseURL 设置为 bundle 路径。然后,您可以从那里调用 Bundle 中的图像,如下所示:

NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
NSURL *bundleBaseURL = [NSURL fileURLWithPath: bundlePath];

[webView loadHTMLString:htmlContent baseURL: bundleBaseURL];

HTML 中的图片可以直接调用本 map 片。

<img src="yourImageFromTheMainBundle.jpg" />

同样可以用来调用 CSS 文件甚至 JS 文件,因为 baseURL 会在主 Bunble 内部查找。

如果它不在您的主包中,您只需将 baseURL 更改为图像所在的路径即可。

关于objective-c - 如何在webview中显示本 map 片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/464416/

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