我在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。答案 0 :(得分:4)
为了回答我的问题,问题在于我正在调用委托方法
转换MKAnnotationView时,MKAnnotationView* planeView = [self mapView:mapView viewForAnnotation:planeAnnotation];
而不是调用实例方法MKAnnotationView* planeView = [mapView viewForAnnotation:planeAnnotation];
。