IBAction 打开本地 HTML 文件

发布于 2024-12-09 18:41:10 字数 405 浏览 1 评论 0原文

我有一个基于视图的应用程序,它最终只是一个 WebView ...带有带有一些图标的选项卡栏。 所以我需要添加一个小图标以返回本地HTML 文件 home.html。

也许有人可以给我一些信息,如何在不将视图更改为新视图的情况下处理它?

这是我的其他 IBActions 的样子。

- (IBAction)news_button:(id)sender; {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.google.com"]]; 
}

其他选项可以打开网站,但不能在 safari 中打开......就像现在一样。

感谢分享! :)

I've got a view based application that one is at last just a single WebView ... with a Tabbar with some Icons.
So i need to add a small icon for go back to the localHTML File home.html.

Maybe could someone give me some informations how to handle it without change the view to a new one?

Here is how my other IBActions looks like

- (IBAction)news_button:(id)sender; {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.google.com"]]; 
}

Other option could be open a Website but not in safari ... like it does at the moment.

Thanks for sharing! :)

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

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

发布评论

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

评论(1

谜泪 2024-12-16 18:41:10

通过上面的行,您现在可以在 Safari 中打开它。

如果本地文件位于主捆绑目录中,则可以获取本地文件的路径,

NSString *filePath = [[NSString stringWithFormat:@"%@/%@", [[NSBundle mainBundle] resourcePath], @"home.html"] retain];

那么为什么不使用

[yourWebView loadRequest:[NSURLRequest initWithURL:[NSUrl initWithString:filePath]]];

With the line above you are opening it in Safari right now.

You can get path to the local file if it is in main bundle catalog with

NSString *filePath = [[NSString stringWithFormat:@"%@/%@", [[NSBundle mainBundle] resourcePath], @"home.html"] retain];

So why not use

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