Develop iphone in php

Looking for iphone application development for the first time after Windows.

I found several sdk (such as Airplay) that allow me to do this, but most of them require knowledge of C / C +

Does anyone know something like this that allows you to use PHP as your language?

Thank you in advance

+4
source share
4 answers

You can create web applications for iPhone in PHP. Apple supports javascript api for Mobile Safari, which allow you to access some iPhone features using javascript. The main pages of the application can be served with php, and then any dynamic interaction can be processed using javascript. You will never achieve the same experience with this method and actually use Objective-C.

+6
source

Instead of writing a (native) iPhone app, is it enough to write WebApp? This can be done in conjunction with PHP. Otherwise, your best chance is to learn Objective-C.

+1
source

go to http://www.phonegap.com/start/ you can even access the equipment through javascript. So, you will use PHP to generate html / css / javascripts but definitely, you need an Apple computer, a developer certificate ($ 99 atleast), Xcode (4 gb).

but a web application is a web application, it will be slower than a real native application.

0
source

yes, you can develop your own iPhone app using PHP, HTML, CSS and Javascript. try Appcelerator Titanium , but as wewals say, you will never achieve the same experience with this method and actually use Objective-C. Consider learning objective-c to develop your own iPhone app. you can also use HTML5, since the iPhone browser supports HTML5, you can get much more functionality.

0
source

All Articles