I have 2 apps that I have made and I would like to be able to open one of them from the other. Is there any way to do this? And if possible, I would like to be able to transfer information from one to the other that doesn’t involve the Web.
Share
You’ll have to implement a URL scheme. For example, if one app’s URL scheme is
appone://, then you can launch app one from app two like this:You can learn how to implement a URL scheme here.