Is it possible to automatically create an iPhone app from another iPhone app?

As a title; is there any function that can achieve this?

0


source to share


4 answers


In theory, perhaps practically not. If you want to sell it on an app store, then no.



+1


source


Officially, no. Official applications must be compiled and signed on an OS X machine.



In practice, like - if you are not against jailbreak. For jailbroken phones, gcc and signature tools are available that run on iPhones. So on jailbroken phones, you can have an app that generates new apps. However, Apple will not allow you to sell such an app on the App Store.

+2


source


I would take a look at this link which quotes the SDK:

3.3.2. [..] No interpreted code can be loaded and used in an application other than code that is interpreted and executed by the Apple APIs published by the embedded interpreter (s).

and

3.3.3 Without the prior written permission of Yablokov, the Application may not provide, unlock or permit additional features or functionality through distribution mechanisms other than the App Store.

between these two constraints, I think it would be nearly impossible to dynamically create any application on the fly (except perhaps for the concept of pure JavaScript / HTML application mentioned in the article).

+1


source


If your iPhone is jailbroken, install "CallMe" from Cydia. It does exactly what you want it to do: it creates small apps with a contact icon, and if you launch one of these small apps, this will launch the phone app and call the contact's phone number.

0


source







All Articles