Reputation: 14934
I need to build a native app for iPhone which should be available in the App Store. A lot of the content is like an ordinary webpage with a bounce of text. A lot of this text has to be changed frequently, so I'm thinking that a web app would be a better alternative for this.
How is the standard procedure for making an web app? Currently I'm thinking that the entire app could be build using jQuery Mobile (anything better?) and then I'll just create a simple native iOS application with a web browser pointing to this page (m.domain.com).
Is this how this should be done or are there better solutions for this? I've been looking at PhoneGap, but it seems that it embeds the HTML/CSS into the native application, which means that we have to update the app in App Store when there are changes in the content.
Upvotes: 0
Views: 882
Reputation: 118
PhoneGap does embed HTML 5 and CSS into the application. It is however one of the best methods for creating an app using jQuery Mobile or Sencha Touch. You have the choice of making a mobile website which the user can save to his/her phone, or the use of PhoneGap. Like other users have said, it isn't possible to create a simple wrapper that points to a website.
Upvotes: 0