有一种MKMapViewDelegate协议的方法:
- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
我正在使用自定义引脚放置动画,但是当删除注释视图时,没有“remove”(didRemoveAnnotationViews)动作来实现自定义动画的方法。
有没有人为此找到解决方法?
谢谢!
答案 0 :(得分:0)
[mapview deselectAnnotation:[mapview.selectedAnnotations objectAtIndex:0] animated:YES];
或
[mapview deselectAnnotation:calloutMapAnnotationView.annotation animated:YES]; 其中calloutMapAnnotationView是所选custm pin的标注气泡对象。