Hi :) I would like to make a code running iOS app, but I am not sure how to go about it. I want a user to be able to write, and run code directly on their phone. It would be something similar to Pythonista.....but how? How would I include compilers/interpreters in my iOS app? and how would I run the executables?
Compilers/Interpreters in iOS apps
What type of programming do you want to have in your app ?
There are a lot of security barriers on iOS for the good, so that may seriously limit what you can do. You cannot install an app that has not been signed by Apple.
So, you would have the app run inside your own app.
There are a lot of security barriers on iOS for the good, so that may seriously limit what you can do. You cannot install an app that has not been signed by Apple.
So, you would have the app run inside your own app.
I'm thinking simple scripting stuff. Let's say I have a helloworld.c program. It just prints "Hello world". I want to be able to compile, and run the program in my iOS app. If I understand this correctly, I would have to include clang in my iOS app. The next part I don't understand. How do I execute clang?