如何在 IOS 上管理 MKAnnotationView 的拖放?
我在没有 InterfaceBuilder
的情况下工作。
我有一个 MKAnnotationView
实例,YES 上有 setDraggable
, 在我的 MKMapView
中,显示了我的注释视图,我可以拖放它。
执行放置操作时如何执行方法? 在这种方法中,我需要注释视图的新坐标。
I'm working without InterfaceBuilder
.
I've an instance of MKAnnotationView
with setDraggable
on YES,
In My MKMapView
my annotation view is displayed and I can drag and drop it.
How can I execute an method when the drop action is performed?
In this method I need the new coordonates of my annotation view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您已使用 setCoordinate 方法正确设置 MKAnnotation 对象,则在 didChangeDragState 方法中,新坐标应该已位于注释对象中:
有关参考,请参阅 此处的文档。如果您的应用需要在 4.x 之前的操作系统中运行,则拖动需要更多的手动工作。文档中的链接还提供了一个示例,说明如何在需要时执行此操作。
If you've setup your MKAnnotation object with a setCoordinate method properly, then in the didChangeDragState method, the new coordinate should already be in the annotation object:
For reference, see the "Marking Your Annotation View as Draggable" section in the docs here. If your app needs to work in an OS earlier than 4.x, the dragging requires more manual work. The link in the docs also points to an example of how to do that if you need to.
您可能还需要添加以下内容:
因为 MKAnnotationView 不会准确地更改其拖动状态(即使在停止拖动后,这也可能使您的地图与注释一起平移)
you may also want to add the following:
since MKAnnotationView doesn't change its drag state accurately (which could make your map pan with your annotation even after you stop dragging)
快速解决方案:
Swift solution :