1

我尝试将 MKMapView 添加到我的新应用程序中。我创建了一个自定义 MKAnnotationView -> 所以我可以更改图钉的图像。一切正常,直到我尝试拖动图钉。不管我做什么,它都不会。只剩下一件事要说;MapView 是一个大 tableView 单元格的子视图。但是平移和缩放工作正常,所以我认为这与它无关......

这是我的代码:

MKAnnotation

@interface MyAnnotation : NSObject <MKAnnotation> {


}


//MKAnnotation
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;

@end

@implementation MyAnnotation
@synthesize coordinate;


@end

MKAnnotationView

@interface MyAnnotationView : MKAnnotationView {

}

@end

@implementation MyAnnotationView

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:CGRectMake(self.frame.origin.x, self.frame.origin.y, 38, 43)];
    if (self) {
        // Initialization code
        UIImage* theImage = [UIImage imageNamed:@"partyPin.png"];

        if (!theImage)
            return nil;
        self.image = theImage;
    }
    return self;
}

@end

MapView 所在的视图 - 委托方法 - 不包括我初始化 MKAnnotation 和“addAnnotation”的部分

- (MKAnnotationView *)mapView:(MKMapView *)lmapView viewForAnnotation:(id <MKAnnotation>)annotation {

    MyAnnotationView *myAnnotationView = (myAnnotationView *)[lmapView dequeueReusableAnnotationViewWithIdentifier:@"myView"];
    if(myAnnotationView == nil) {
        myAnnotationView = [[MyAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"myView"];
    }

    myAnnotationView.draggable = YES;
    myAnnotationView.annotation = annotation;

    return myAnnotationView;
}

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annotationView didChangeDragState:(MKAnnotationViewDragState)newState fromOldState:(MKAnnotationViewDragState)oldState
{
    if (newState == MKAnnotationViewDragStateEnding)
    {
        CLLocationCoordinate2D droppedAt = annotationView.annotation.coordinate;
        NSLog(@"dropped at %f,%f", droppedAt.latitude, droppedAt.longitude);
    }
}

有人看到我错过了什么吗?

首先十分感谢!

4

1 回答 1

4

要使注解可拖动,它必须实现一个setCoordinate方法。仅将视图的draggable属性设置为YES是不够的。

您的注释类已定义coordinatereadonly.

相反,将其定义为readwriteorassign并删除coordinate方法(以及latitudelongitudeivars 和属性,因为您将能够直接设置坐标)。

还要添加一个@synthesize coordinate,这样您就不必手动编写 getter/setter。

于 2012-09-23T22:56:38.120 回答