2

我在 MKMapView 上有一个移动注释,显示当前用户位置。我为该注释设置了自己的图像,并且我想旋转它以便您可以看到标题。

viewForAnnotation委托中,我有:

static NSString *planeIdentifier = @"Plane";
static NSString *stationIdentifier = @"Station";
NSString *identifier;

if([[annotation title] rangeOfString:@"Plane" options:NSLiteralSearch].location == NSNotFound) {
    identifier = stationIdentifier;
}
else {
    identifier = planeIdentifier;
}

MKAnnotationView *annotationView = (MKAnnotationView *) [aMapView dequeueReusableAnnotationViewWithIdentifier:identifier];
if (annotationView == nil) {
    annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
} else {
    annotationView.annotation = annotation;
}

annotationView.enabled = YES;

annotationView.canShowCallout = NO;
    annotationView.image = [UIImage imageNamed:@"airPlane.png"];

return annotationView;

调用实例方法的代码如下:

[planeAnnotation setCoordinate:planeCoordinate];
MKAnnotationView* planeView = [self mapView:mapView viewForAnnotation:planeAnnotation];
[planeView setTransform:CGAffineTransformMakeRotation([[[self modele] udpData] getValueFor:HDING_TRUE item:DYNAMICS]*(M_PI/180))];

问题是标题永远不会更新,即图像永远不会旋转。

非常感谢任何帮助!

编辑:我尝试为我在 mapView 上的每个 MKAnnotationView (几百个)设置一个自定义标识符(注释的标题),但我注意到 annotationView 始终为nil,这意味着它实际上并没有从中取出任何东西。我认为这就是它不旋转的原因,因为我没有旋转我在地图上显示的同一个 MKAnnotationView。

4

1 回答 1

4

为了回答我的问题,问题在于我 在转换 MKAnnotationView 时调用的是委托方法MKAnnotationView* planeView = [self mapView:mapView viewForAnnotation:planeAnnotation];而不是调用实例方法。MKAnnotationView* planeView = [mapView viewForAnnotation:planeAnnotation];

于 2012-07-16T21:43:14.250 回答