MonoTouch:可拖动的 MKAnnotationView
我正在尝试在 MonoTouch 中实现可拖动的 MKAnnotationView。
在 iOS 文档中,MKAnnotationView 上有一个名为 Draggable 的 @property,但 Monotouch 实现上没有。
是否有另一种方法可以在 Monotouch 中实现可拖动的 MKAnnotationView。
var anv = new MKAnnotationView (myAnnotation, "ILoveMonoTouch"){
Draggable = true <== ERROR
};
I am trying to implement a draggable MKAnnotationView in MonoTouch.
In the iOS docs there is a @property called Draggable on the MKAnnotationView, but not on the Monotouch Implementation.
Is there another way to implement a draggable MKAnnotationView in Monotouch.
var anv = new MKAnnotationView (myAnnotation, "ILoveMonoTouch"){
Draggable = true <== ERROR
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于某种原因(可能是错误),此属性在
MKPinAnnotationView
不是MKAnnotationView
这与苹果的文档相矛盾。我会研究这个问题并确保它在未来的 MonoTouch 版本中得到修复。编辑属性
dragState
有相同的问题UPDATED UPDATE这在刚刚发布的5.0.2中已修复
For some reason (likely a bug) this property is implemented in
MKPinAnnotationView
notMKAnnotationView
and this contradict Apple's documentation. I'll look into this and ensure it's fixed in future MonoTouch releases.EDIT the property
dragState
has the same issueUPDATED UPDATE this is fixed in the just released 5.0.2