JQTouch 远程页面 - 返回应用程序
我使用 JQTouch 和 PhoneGap 构建了一个简单的 iphone 应用程序。
从主菜单中,有一个链接转到搜索表单。搜索形式实际上是 在网络服务器上,但风格如此,对于用户来说,他们看起来仍然在 该应用程序,但实际上该页面来自 Apache/php 服务器。
搜索表单允许您进行搜索并查看结果 伟大的。但是现在您实际上正在使用服务器页面如何返回到 你来自应用程序菜单?
谢谢
I've built a simple iphone app with JQTouch and PhoneGap.
From the main menu a link goes to a search form. The search form is actually
on a web server but styled so to the user it looks like they are still in
the app but really the page has come from a Apache/php server.
The search form allows you to do search and see the results which is
great. However now you are actually using the server page how do get back to the
app menu you came from?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用 ChildBrowser 插件之类的东西来显示您的搜索结果。然后您可以轻松关闭 ChildBrowser 并返回到您的应用程序。
Your going to have to use something like the ChildBrowser plugin to show your search results. Then you can close the ChildBrowser easily and return to your app.
您是否正在打开 Mobile Safari 或者您的应用程序中是否嵌入了浏览器?我假设是后者。如果是这样,您可以将浏览器 UIView 嵌套在 UINavigationController 中。这样,您就可以在屏幕顶部的导航栏中有一个后退按钮,它可以带您返回应用程序菜单。有关更多详细信息,请参阅 UINavigationController 的文档。
Are you opening Mobile Safari or do you have a browser embedded in your app? I'm going to assume the latter. If so, you could nest your browser UIView inside of a UINavigationController. That way you can have a back button at the top of the screen in the navigation bar and it can take you back to your app menu. See the docs for UINavigationController for more details.