Use .app file in an iOS application

I have generated a .app file containing info.plist and an executable document file through command line. Can I integrate this executable file into my swift iOS application (iOS 13) to use the functionality provided by the executable file?

Replies

Can I integrate this executable file into my swift iOS application (iOS 13) to use the functionality provided by the executable file?

No. iOS apps cannot sublaunch other processes. The alternative would be to build the app’s code into a framework, which your main app can then embed and call.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"