Is it possible to communicate between apps without using a URL scheme in iOS?

I want to open app A from app B, but app A is already in the appstore without setting up a custom url scheme . From App B, how can I communicate with App A?

+3


source to share


2 answers


No, It is Immpossible.

You need to reload your previous app using the url scheme.



FYI, App Extension is another way if it suits your application.

See the link for details.

+2


source


This Apple document lists two ways to communicate locally between applications. One is via AirDrop and the other is via a custom URL scheme. Only the latter can launch another application.



0


source







All Articles