Frage

Ist es möglich, meine App zurückzukehren, sobald eine Telefonverbindung (tel:) angeklickt wurde, und öffnete mit

[[UIApplication sharedApplication] openURL:xyz]

Zum Beispiel, wenn der Benutzer beendet den Anruf?

Danke

War es hilfreich?

Lösung

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.

Andere Tipps

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top