Hi there, I am using MapKit for my tvOS app
I got a problem and I don't know how to solve it
Here is the problem:
I had lots of annotations on my mapView, I selected one of them by using siri remote and it changed annotation view and showed up custom callout view
but I don't know how to deselect the annotation which was selected...
I had tried
open func deselectAnnotation(_ annotation: MKAnnotation?, animated: Bool)
but MapKit will find next annotation to select immediately! and the property "selectedAnnotations: [MKAnnotation]" always has item!
so I cant deselect
Is there any solution for this?
many thanks!