实现 MKMapView didRemoveAnnotationViews 方法?

发布于 2024-11-06 01:08:24 字数 249 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小草泠泠 2024-11-13 01:08:24

[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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文