有时 [mapView selectAnnotation]; 时会出现奇怪的伪影;

发布于 2025-01-03 12:29:40 字数 193 浏览 2 评论 0原文

[_mapView selectAnnotation:sannotation animated:YES];

Screenshot

似乎并不总是如此,所以我不明白其原因是什么。

如何修复它?

[_mapView selectAnnotation:sannotation animated:YES];

Screenshot

It appears not always, so I don't understand what's the reason for it.

How to fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

铁轨上的流浪者 2025-01-10 12:29:40

在选择任何注释之前,请取消选择地图视图上的所有注释。

for (id<MKAnnotation> annotation in mapView.annotations) 
  [mymap deselectAnnotation:annotation animated:NO];

当我与默认标注一起实现自定义标注时,我遇到了同样的问题。尽管这不是一个完美的解决方案,但它达到了目的。

Before selecting any annotation deselect all annotations on mapView.

for (id<MKAnnotation> annotation in mapView.annotations) 
  [mymap deselectAnnotation:annotation animated:NO];

I had same issue when along with default callout, I had implemented custom callouts. Though it is not a perfect solution it served the purpose.

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