Open the app from another (iOS)
I read that there is nothing like NSWorkspace for iOS
Equivalent to NSWorkspace for iOS
Unfortunately I need a button in my application that can launch some other applications (in the background). Is this possible without NSWorkspace?
+3
source to share
1 answer
Your first problem is that you cannot run applications in the background the same way you can on a Mac.
But, assuming that it is enough to just start the application, the answer is: it depends. Another application will need a specific URL scheme. Not all, unfortunately. Then you just call [UIApplication openURL:]
.
+5
source to share