当我尝试拖动时,自定义 MKAnnotation 图像会恢复为默认值

发布于 2024-10-24 19:28:15 字数 135 浏览 3 评论 0原文

我有一堆不需要拖动的 MKAnnotations。我通过[pin setDraggable:NO]设置它。当我触摸注释并(意外地)拖出注释时,我遇到了问题,它会立即丢失其自定义图像并更改回默认的红色图钉。我该如何防止这种情况发生?

I've got a bunch of MKAnnotations that don't need dragging. I set this by [pin setDraggable:NO]. I'm having an issue when I touch the annotation and (accidentally) drag off an annotation, it instantly looses it's custom image and changes back to the default red pin. How do I prevent this from happening?

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

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

发布评论

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

评论(1

星星的轨迹 2024-10-31 19:28:15

在 viewForAnnotation 委托方法中,确保视图创建为 MKAnnotationView,而不是 MKPinAnnotationView(它是自动提供图钉图像的 MKAnnotationView 的子类)。

In the viewForAnnotation delegate method, make sure the view is created as an MKAnnotationView and not an MKPinAnnotationView (which is a subclass of MKAnnotationView that automatically provides a pin image).

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