UIWebView:访问操作系统图形/资源?

发布于 2024-12-28 23:14:00 字数 101 浏览 0 评论 0原文

我正在使用 UIWebView 实例在应用程序中显示帮助页面。在该 HTML 中,我可以引用操作系统提供的图形(例如背景、图标等)吗?上述资源的 URL 是什么?

I am using a UIWebView instance to show a help page in an app. Within that HTML can I make reference to graphics provided by the OS (e.g., backgrounds, icons, etc.)? What would be the URLs to said resources?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可爱咩 2025-01-04 23:14:00

查看此页面:http://iphoneincubator.com/blog/windows-views/uiwebview-重温

以下是 Nick 所写内容的摘要:

首先,在项目中包含图形资源。然后,当将 HTML 加载到 UIWebView 中时,使用主包路径作为 baseURL:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[webView loadHTMLString:htmlString baseURL:baseURL];

现在可以访问这些资源:

<img src="myimage.png">

Check out this page: http://iphoneincubator.com/blog/windows-views/uiwebview-revisited

Here's a summary of what Nick wrote:

First, include the graphics resources in your project. Then when loading your HTML into the UIWebView, use the main bundle path as your baseURL:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[webView loadHTMLString:htmlString baseURL:baseURL];

These resources can now be accessed:

<img src="myimage.png">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文