Simon
Simon

Reputation: 819

Is it possible to run 2nd App from 1st App?

Is it possible/allowed to run 2nd App from 1st App ? if yes, how ?

IOS platform. i want to find out is it possible to pass data to 2nd app and execute it?

Upvotes: 0

Views: 121

Answers (2)

nduplessis
nduplessis

Reputation: 12436

You can register a custom URL scheme if you are the developer of both apps. Alternatively the 3rd party app might support it's own URL scheme, allowing you to launch and pass data.

There's a tutorial on how to implement custom URL schemes in an iOS app here: http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html

Upvotes: 1

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798606

system(3), or fork(2) and exec(3).

Upvotes: 0

Related Questions