Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I create iphone app (IOS) using web's languages ( HTML - CSS - jQuery )?

Can I create iphone app (IOS) using web's languages ( HTML - CSS - jQuery ) ? How can I star that ?

like image 651
faressoft Avatar asked Feb 05 '11 19:02

faressoft


1 Answers

There are a number of different approaches you can take.

First, there's creating iPhone WebApps. This approach give you a number of different Mobile Safari APIs that expose internal capabilities through the Safari Browser.

Second, you can create a native application that contains a UIWebView. Other than this detail, the approach would be the same as the first, exclusively using the APIs for Mobile Safari.

Lastly, you can take an approach of using a third-party SDK, like Titanium or PhoneGap. This approach gives you a base set of APIs that you leverage for not only making iPhone webapps, but an app that works on other mobile platforms as well.

Good luck!

like image 82
Wayne Hartman Avatar answered Oct 18 '22 03:10

Wayne Hartman