In which way could I call the function that automatically opens my annotation (with title, subtitle, etc), rather than to touch on the annotation on the mapview?
In which way could I call the function that automatically opens my annotation (with
Share
Implement
MKMapViewDelegatedelegate;Implement
- (MKAnnotationView *) mapView: (MKMapView *) mapView_ viewForAnnotation: (id <MKAnnotation>) annotation_;; for example like this:Show the pin after the map has finished loading:
This code has a property called annotation which implements
MKAnnotation. Also, it animates the pin drop too, but it should be fairly self-explaining.HTH.