esatp
esatp

Reputation: 1

Opening another app in iOS

When you open another app from your app with URL. Is there possible to put a back button in that app to get back to your app?

Thanks!

Upvotes: 0

Views: 391

Answers (2)

Gereon
Gereon

Reputation: 17882

This should be possible for two mutually cooperating apps:

App A opens appBschema://whatever?back=appAschema%3a%2f%2fdontcare and to implement the 'back' button app B can open appAschema://dontcare

Upvotes: 2

Ismael
Ismael

Reputation: 3937

In any normal scenario, no, it's someone else's app and you can't do anything to it.

If the other app is yours however, and you expect to swap between them, you could do that in the other application, but in that application and not the one you are trying to open back.

Upvotes: 1

Related Questions