在我的 viewForAnnotation 方法中,我在图钉右侧添加了一个详细信息披露按钮,但是它将 showUserLocation 更改为红色图钉,在“当前位置”文本的右侧有一个披露按钮。
如何阻止当前位置符号成为图钉?没有方法就好了。
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
static NSString *identifier = @"MyLocation";
MKPinAnnotationView *annotationView =
(MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
if (annotationView == nil) {
annotationView = [[MKPinAnnotationView alloc]
initWithAnnotation:annotation
reuseIdentifier:identifier];
} else {
annotationView.annotation = annotation;
}
annotationView.enabled = YES;
annotationView.canShowCallout = YES;
// Create a UIButton object to add on the
UIButton *rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[rightButton setTitle:annotation.title forState:UIControlStateHighlighted];
[annotationView setRightCalloutAccessoryView:rightButton];
return annotationView;
}