Reputation: 2951
I have built an app with py2app.
It is a simple GUI.
How to transfer the app to iOS?
Upvotes: 0
Views: 56
Reputation: 768
You won't be able to run this app on an iPhone. First, there's no python interpreter. Your best bet is to port the app to an Xcode project, and do it natively.
Alternatively, you could try and use kivy.
Upvotes: 1