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?
|
5
|
|
|
|
|
|
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... |
|||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||||||
|
|
|
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. |
||
|
|
