I would like to hand my application to another developer to assymilate in his iOS app.
The goal is to have, in his app, a shortcut that opens my app directly – not just a link to the appstore.
The problem is my app has to remain compiled, since I don’t want to hand over my source-code.
Is this situation, of one compiled iOS app, encapsulated insind another iOS app, even possible?
Thanks in advance.
I would like to hand my application to another developer to assymilate in his
Share
All code in an app bundle has to be staticly linked, so you would have to rewrite and compile your app as a linkable shared library.