In iOS, is there anyway i can launch another app to do something and then get a response back saying that it’s done.
For example: My iOS app APP A launches another app APP B (e.g. Google Pay) to make a payment and then after the payment is made, I would like APP A to receive a response/callback/acknowledgement saying its done.
By the way, I'm having zero trouble getting APP A to launch APP B via UIApplication.Shared.Open(…)
** In android we use Android Intent to launch APP B and get a response back to APP A using OnActivityResult(…)
**.
PS: My App is actually built in React Native using NativeModules