0

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

joec
  • 3,533
  • 10
  • 60
  • 89

2 Answers2

0

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.

Alfonso
  • 8,386
  • 1
  • 43
  • 63
0

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
  • 19,769
  • 4
  • 37
  • 41