vote up 14 vote down star
5

Using PyObjC, you can use Python to write Cocoa applications for OS X. Can I write native iPhone apps using Python and if so, how?

flag

5 Answers

vote up 9 vote down check

Not currently, currently the only languages available to access the iPhone SDK are C/C++ and Objective C.

There is no technical reason why this could not change in the future but I wouldn't hold your breath for this happening in the short term.

That said, Objective C really isn't that scary...

link|flag
vote up 14 vote down

You can use PyObjC on the iPhone as well, due to the excellent work by Jay Freeman (saurik). See iPhone Applications in Python.

Note that this requires a jailbroken iPhone at the moment.

link|flag
vote up 3 vote down

The iPhone SDK agreement is also rather vague about whether you're even allowed to run scripting languages (outside of a WebView's Javascript). My reading is that it is OK - as long as none of the scripts you execute are downloaded from the network (so pre-installed and user-edited scripts seem to be OK).

IANAL etc etc.

link|flag
vote up 1 vote down

Newer versions of the iPhone SDK licensing agreement disallow jailbreaking. So while it is possible to do what you are looking to accomplish, there is no legal way to do it at the moment.

link|flag
Why does that really matter? It's not immoral. As long as you don't sell jailbroken phones, nobody will care. – Zifre Apr 10 at 22:50
1  
I didn't state that there was anything wrong with it. It's not a value judgement, it's a fact. The Apple Developer Agreement disallows jailbreaking. If the original poster entertains any idea of ever distributing their application on the App Store, it's something that they need know. – mmc Apr 11 at 0:01
vote up 1 vote down

You can do this with PyObjC, with a jailbroken phone of course. But if you want to get it into the App Store, they will not allow it because it "interprets code." However, you may be able to use Shed Skin, although I'm not aware of anyone doing this. I can't think of any good reason to do this though, as you lose dynamic typing, and might as well use ObjC.

link|flag

Your Answer

Get an OpenID
or

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