views:

103

answers:

2

Is it possible to return to my app once a phone link (tel:) has been clicked, and opened using

[[UIApplication sharedApplication] openURL:xyz]

For example, when the user ends the call?

Thanks

A: 

No, unfortunately there is no way to achieve this, since clicking a link will always first terminate your app and then start the new one.

frenetisch applaudierend
A: 

No. Although if you store your state using NSUserDefaults (or other means) you can return to the same point where you left; the user will have to relaunch your app to do this. This approach is recommended in the Human Interface Guidelines.

Paul Lynch