I am opening from my ViewController the Maps.app via openInMaps(launchOptions:) and it does not trigger any lifecycle method when leaving or going back to the app.
Example Project: https://github.com/raphaelseher/OpenInMaps
Example Code:
let placeMark = MKPlacemark(coordinate: CLLocationCoordinate2D(latitude: 46.6413035, longitude: 14.2425444))
let mapItem = MKMapItem(placemark: placeMark)
mapItem.name = "Klagenfurt"
mapItem.openInMaps(launchOptions: nil)
Someone able to explain me why this is the behaviour?