Multiple annotation callouts displaying in MKMapView
Is it possible to open simultaneously more then one callout? The code: - (void)mapViewDidFinishLoadingMap:(MKMapView *)theMapView { for (id<MKAnnotation> currentAnnotation in theMapView.annotations) { [theMapView selectAnnotation:currentAnnotation animated:YES]; } } opens only one callout. Note that there is a method on MKMapView (not MKAnnotationView ) for selecting an annotation programmatically that works more or less as you would expect: - (void)selectAnnotation:(id < MKAnnotation >)annotation animated:(BOOL)animated However, it automatically deselects any currently annotation at the same