Programmatically Show Call Out on Annotation


- (void)mapView:(MKMapView *)mymapView didAddAnnotationViews:(NSArray *)views
{
    //Show call out
    [mapView selectAnnotation:[[mapView annotations] lastObject] animated:YES];
}