如何使用 OS 3.1 MapKit 实现可拖动图钉?
我正在 ios 4.1 中开发地图套件,但是当我在 ios 3.1 上构建我的应用程序时,它会给出注释错误,
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annotationView didChangeDragState:(MKAnnotationViewDragState)newState fromOldState:(MKAnnotationViewDragState)oldState
该函数不是 3.1
关注
Shazli
I am Working on a map kit in ios 4.1 but when i am build my app on a ios 3.1 so it give annotation error
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annotationView didChangeDragState:(MKAnnotationViewDragState)newState fromOldState:(MKAnnotationViewDragState)oldState
this function is not is 3.1
Regard
Shazli
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原生拖动支持确实需要 iOS 4 或更高版本。幸运的是,有一个旧地图技术文档 描述如何在早期版本的 iOS 中创建可拖动注释。
The native dragging support indeed requires iOS 4 or later. Fortunately, there's a Legacy Map Techniques document describing how to create draggable annotations in earlier versions of iOS.