From my iphone app I an calling a url in safari.How can i revert back to my iphone app from that webpage
just like we return back to our apps after facebook authentication ?
From my iphone app I an calling a url in safari.How can i revert back to my iphone app from that webpage
just like we return back to our apps after facebook authentication ?
You can use a URL scheme if you have control of the web page. Simply add a link using your scheme.
If your scheme is myapp:
then:
<a href="myapp://return_info">Return to the app</a>
See this site for a tutorial.