Почему пользовательское изображение аннотации MKMapView исчезает при прикосновении?

Я аннотирую свою карту и просто настраиваю изображение, но когда я нажимаю аннотацию на MapView, изображение переходит от моего пользовательского изображения обратно к красной булавке. Почему это?

- (MKAnnotationView *)mapView:(MKMapView *)newMapView viewForAnnotation:(id )newAnnotation {
    MKPinAnnotationView *annotation = [[MKPinAnnotationView alloc] initWithAnnotation:newAnnotation reuseIdentifier:@"currentloc"];
    if (annotation == nil) {
        annotation = [[MKAnnotationView alloc] initWithAnnotation:newAnnotation reuseIdentifier:@"currentloc"];
    }

    annotation.image = [UIImage imageNamed:@"anno.png"];
    annotation.canShowCallout = YES;
    annotation.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bus_stop_30x30.png"]];
    annotation.leftCalloutAccessoryView = imgView;

    return annotation;
}

Мой код выглядит идентично некоторому примеру кода, который не создает эту проблему.

Ответы на вопрос(3)

Ваш ответ на вопрос