IBAction 打开本地 HTML 文件
我有一个基于视图的应用程序,它最终只是一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过上面的行,您现在可以在 Safari 中打开它。
如果本地文件位于主捆绑目录中,则可以获取本地文件的路径,
那么为什么不使用
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
So why not use