浏览 UIWebView 中的文件夹

发布于 2024-10-08 01:47:42 字数 424 浏览 8 评论 0原文

我的问题如下。我对 UIWebView 中加载的资源路径有点困惑。我想让我的链接处于活动状态。目前,WebView 无法获取其他文件夹中的资源(.css、.html),而它们之间的链接是正确的。你知道如何解决这个问题吗? 我目前正在这样做

NSString* path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]; NSString* htmlString = [NSString stringWithContentsOfFile:路径编码:NSUTF8StringEncoding 错误:nil]; [WebView loadHTMLString:htmlString baseURL:[NSURL fileURLWithPath:path]];

感谢您阅读我的内容!

My question is the following. I'm a bit confused about the path of resources to be loaded in a UIWebView. I'ld like to make my links active. For the moment the WebView isn't getting resources (.css, .html) that are in other folders while the link between them is correct. Do you know how to fix this ?
I'm currently doing like this

NSString* path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
[WebView loadHTMLString:htmlString baseURL:[NSURL fileURLWithPath:path]];

Thanks for reading me !

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

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

发布评论

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

评论(1

帅哥哥的热头脑 2024-10-15 01:47:42

你可以尝试这样,它可能有用:

[webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"webPage" ofType:@"html"]]]];

Can you try like this, it may be useful:

[webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"webPage" ofType:@"html"]]]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文