Is there a way to find out if the user deletes the WKInterfaceMap?

In WatchKit, the Map component is an object WKInterfaceMap

.

This UI component loads the main Map app on the Apple Watch by default when the user taps on it.

I can track the Controller event didDeactivate()

, but then I have no idea if it was because the user stopped using the clock, clicked on the map, or just went somewhere else.

+3


source to share


1 answer


Unfortunately, WatchKit does not have a method or event to determine if the user was clicked on WKInterfaceMap

. The closest method is to use didDeactivate

and you have listed the problems with this approach.



+3


source







All Articles