0

There are many ways to start application from another application in Android.

Is it possible to start application from another application in iOS? If possible, how do I do it?

vhu
  • 12,244
  • 11
  • 38
  • 48
박주철
  • 1
  • 1
  • Check this link - http://stackoverflow.com/questions/8201724/how-to-register-a-custom-app-opening-url-scheme-with-xcode-4 – Rajat Sep 08 '15 at 09:54

1 Answers1

2

Set Custom URL Schemes Yes, it is possible in iOS if provided the app has its URL Scheme set. If you want to open your app from any other your app you can set the custom URL Scheme in info tab of project settings.

To test, run your app, minimize and then open safari and type the URL you just set, hit GO and your app will open.

Rohit Kumar
  • 877
  • 6
  • 20