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

link|improve this question
feedback

2 Answers

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.

link|improve this answer
Here's an example that uses ChildBrowser wisejive.com/2010/11/phonegap-jquery-mobile-twitter-and.html – Paul Beusterien Jan 16 '11 at 16:48
feedback

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.

link|improve this answer
Hi Dan, thanks for the reply but I'm using JQTouch to build pages and not InterfaceBuilder so there are np .xib files. – Mat Jan 16 '11 at 9:00
Oh, interesting. I'm not familiar with JQTouch, but FWIW, I didn't reference any .xib files and you don't need IB to create UIView, UINavigationController, etc. :) – Dan K. Jan 16 '11 at 19:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.