实现 MKMapView didRemoveAnnotationViews 方法?
MKMapViewDelegate 协议有一种方法:
- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
我正在使用它来自定义引脚放置动画,尽管在删除注释视图时没有“删除”(didRemoveAnnotationViews)操作的方法来实现自定义动画。
有没有人找到解决方法?
谢谢!
There's a method of MKMapViewDelegate protocol:
- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
Which I'm using for custom pin dropping animations, though there's no method for "remove" (didRemoveAnnotationViews) action to implement custom animations when annotation views are being removed.
Has anyone figured out a workaround for that?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[mapview deselectAnnotation:[mapview.selectedAnnotations objectAtIndex:0] 动画:YES];
或
[mapview deselectAnnotation:calloutMapAnnotationView.annotation 动画:YES];
其中 calloutMapAnnotationView 是所选自定义引脚的标注气泡对象。
[mapview deselectAnnotation:[mapview.selectedAnnotations objectAtIndex:0] animated:YES];
or
[mapview deselectAnnotation:calloutMapAnnotationView.annotation animated:YES];
where calloutMapAnnotationView is the callout bubble object of selected custm pin.