实现MKMapView didRemoveAnnotationViews方法?

时间:2011-05-06 17:05:09

标签: objective-c mkmapview

有一种MKMapViewDelegate协议的方法:

- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views

我正在使用自定义引脚放置动画,但是当删除注释视图时,没有“remove”(didRemoveAnnotationViews)动作来实现自定义动画的方法。

有没有人为此找到解决方法?

谢谢!

1 个答案:

答案 0 :(得分:0)

[mapview deselectAnnotation:[mapview.selectedAnnotations objectAtIndex:0] animated:YES];

[mapview deselectAnnotation:calloutMapAnnotationView.annotation animated:YES]; 其中calloutMapAnnotationView是所选custm pin的标注气泡对象。