我想避免在点击MKA注释时显示标注,仅显示图钉,而在点击时不希望任何事情发生。
谢谢
最佳答案
尝试这样。
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
MKPinAnnotationView *annView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"sample"];
annView.canShowCallout = NO;
return annView;
}
希望这段代码对您有用。
关于ios - 避免在点击MKA注释时显示标注,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23779035/