我需要使用一些自定义图像来更改用户的当前位置蓝点注释。如何实现?
这是我的示例代码:
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
MKPinAnnotationView *pinView = nil;
if (annotation == mapView.userLocation){
static NSString* AnnotationIdentifier = @"user";
MKPinAnnotationView *pinView = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:AnnotationIdentifier];
MKPinAnnotationView *customPinView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:AnnotationIdentifier];
customPinView.image = [UIImage imageNamed:@"user.png"];
customPinView.animatesDrop = YES;
customPinView.canShowCallout = YES;
return customPinView;
}
但是当我启动该应用程序时,它会显示红色标记。
答案 0 :(得分:0)
将此代码放入viewForAnnotation:方法
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
static NSString* AnnotationIdentifier = @"Annotation";
MKPinAnnotationView *pinView = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:AnnotationIdentifier];
if (!pinView) {
MKPinAnnotationView *customPinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:AnnotationIdentifier] autorelease];
if (annotation == mapView.userLocation){
customPinView.image = [UIImage imageNamed:@"myPin.png"];
}
else{
customPinView.image = [UIImage imageNamed:@"myPin1.png"];
}
customPinView.canShowCallout = YES;
customPinView.animatesDrop = NO;
return customPinView;
} else {
pinView.annotation = annotation;
}
return pinView;
}