任何人都可以提供使用 MapKit 框架在 OS 4.0 中实现可拖动引脚的任何示例代码/说明吗?
问问题
5636 次
2 回答
14
当然,伙计(是的,我在自言自语),
在您的自定义注释中添加:
@property (nonatomic, readwrite, assign) CLLocationCoordinate2D coordinate;
这样就满足了实现setCoordinate的要求,如http://developer.apple.com/iphone/library/documentation/MapKit/Reference/MKAnnotationView_Class/Reference/Reference.html#//apple_ref/occ/instp/MKAnnotationView/draggable
在您的 MapView 委托中添加:
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annotationView didChangeDragState:(MKAnnotationViewDragState)newState fromOldState:(MKAnnotationViewDragState)oldState
{
//..Whatever you want to happen when the dragging starts or stops
}
并在您的 AnnotationView 中将 draggable 设置为 true,例如:
customAnnotationView.draggable = YES;
我认为这就是我为使其正常工作所做的一切。告诉我你是否有困难。
于 2010-07-07T03:44:02.970 回答
1
查看Ching-Lang Huang 的MapKitDragAndDrop和作者随附的博客文章。
于 2010-07-08T09:23:35.177 回答