gpt4 book ai didi

ios - viewForAnnotation 详细披露更改当前位置以及引脚

转载 作者:行者123 更新时间:2023-11-28 19:09:41 27 4
gpt4 key购买 nike

在我的 viewForAnnotation 方法中,我在图钉右侧添加了一个详细信息披露按钮,但它会将 showsUserLocation 更改为红色图钉,并且在“当前位置”文本右侧有一个披露按钮。

如何阻止当前位置符号成为图钉?没有方法也没关系。

- (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;
}

最佳答案

在方法的开头添加

 if (annotation == mapView.userLocation) {
return nil;
}

关于ios - viewForAnnotation 详细披露更改当前位置以及引脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16854361/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com