user502014
user502014

Reputation: 2331

iphone development in php

Looking at developing an iphone app for the first time upon Windows.

I have found a few sdk's (such as Airplay) that allow me to do this but the majority require knowledge of C/C+

Does anyone know of anything similar that enables you to use PHP as the language?

Thanks in advance

Upvotes: 4

Views: 2095

Answers (4)

wewals
wewals

Reputation: 1447

You can build a web applications for the iPhone in PHP. Apple supports javascript api's for Mobile Safari which allow you get gain access to some iPhone specific functionality through javascript. The main pages of the application can be served from php and then any dynamic interaction can be handled with javascript. You're never going to achieve the same experience with this method vs actually using Objective-C though.

Upvotes: 6

Ibrahim Azhar Armar
Ibrahim Azhar Armar

Reputation: 25745

yes you can develop a native iPhone application using PHP, HTML, CSS and Javascript. try Appcelerator Titanium , but as wewals said You're never going to achieve the same experience with this method vs actually using Objective-C. consider learning objective-c for developing native iPhone application. you can as well as use HTML5, as iPhone's browser support HTML5 you can get a lot more functionality.

Upvotes: 0

Mujah Maskey
Mujah Maskey

Reputation: 8804

go on http://www.phonegap.com/start/ you can even access hardware through javascript. Means you will use PHP to generate html/css/javascripts but Definitely, you need Apple computer, developer certificate ($99 atleast), XCode (4 gb) .

but web app is web-app , it will be slower than real native app.

Upvotes: 0

Roalt
Roalt

Reputation: 8440

Instead of writing a (native) iPhone app, will writing a WebApp also be sufficient? That could be done in combination with PHP. Otherwise, your best chance is learning Objective-C.

Upvotes: 1

Related Questions