MKPinAnnotationView 不允许您将自定义图像用作“pin”并同时启用拖动,因为一旦您开始拖动,图像就会变回默认 pin。因此,我使用 MKAnnotationView 而不是 MKPinAnnotationView。
虽然使用 MKAnnotationView 而不是 MKPinAnnotationView 确实将您的自定义图像显示为您的“pin”,但它不支持您使用默认 pin 获得的拖放动画。
无论如何,我的问题是,在我将自定义 MKAnnotationView 拖到地图上的新点然后移动地图本身之后,MKAnnotationView 不再随地图移动。
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
static NSString *defaultID = @"myLocation";
if([self.annotation isKindOfClass:[PinAnnotation class]])
{
//Try to get an unused annotation, similar to uitableviewcells
MKAnnotationView *annotationView = [self.mapView dequeueReusableAnnotationViewWithIdentifier:defaultID];
//If one isn't available, create a new one
if(!annotationView)
{
annotationView = [[MKAnnotationView alloc] initWithAnnotation:self.annotation reuseIdentifier:defaultID];
annotationView.canShowCallout = YES;
annotationView.draggable = YES;
annotationView.enabled = YES;
}
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0, 0.0, 32, 32)];
imgView.image = self.passableTag.image;
annotationView.leftCalloutAccessoryView = imgView;
annotationView.image = [UIImage imageNamed:[Constants tagIconImageNameForTagType:self.passableTag.type]];
return annotationView;
}
return nil;
}