有没有办法防止启用 MKMapView 实例中的注释。换句话说,当用户点击地图上的红色大头针时,有没有办法阻止它突出显示大头针。现在,当触摸时,引脚会变暗......
编辑:我正在使用以下代码返回 MKPinAnnotationView
// To future MKMapView users - Don't forget to set _mapView's delegate
_mapView.delegate = self;
_annotation = [[MKPointAnnotation alloc] init];
_annotation.coordinate = myLocation;
[_mapView addAnnotation:_annotation];
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation{
MKPinAnnotationView *pin = [[MKPinAnnotationView alloc] initWithAnnotation:_annotation reuseIdentifier:@"id"];
pin.enabled = NO;
return pin;
}