In my iPhone app using Browser I want to open a url for processing a payment.
When webpage loads a button is displayed, on clicking the button a new page opens in a new window.
On that page user enters the payment details and payment is processed.
After payment we are directed to a success page.
The question is, how do I return to my application after payment?
If you own the success page, then you could define your own URI scheme, that will automatically open your application on the device. This is how some links open the iTunes app, via an
itms://URI scheme.A good way to deal with this can be seen here:
Possible to handle your own http URL schemes in iOS?