更改 MKAnnotation 视图而不删除 MKAnnotation

发布于 2024-11-29 23:20:43 字数 197 浏览 4 评论 0原文

我在 MKAnnotation 上有一个标注。点击标注上的附件时,应该更改 MKAnnotationView 的图像。有没有办法在不重新创建 MKAnnotation 的情况下更改此设置?我问的原因是我想更改图像,删除标注。但显然,当我删除注释时,标注也会被删除。那么我如何简单地更改图像,以便标注不会被删除?

I have a callout on an MKAnnotation. The accessory on the callout should, when tapped, change the MKAnnotationView's image. Is there a way to change this, without recreating the MKAnnotation? The reason I ask is that I would like to change the image, without removing the callout. But obviously, the callout gets removed when I remove the annotation. So how do I simply change the image, so that the callout does not get removed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心房敞 2024-12-06 23:20:43

您的 MKMapViewDelegate 具有方法 mapView:didSelectAnnotationView:mapView:didDeselectAnnotationView:。这里传递的是MKAnnotationView,你可以在这里修改它。将这样的代码放入您的委托中:

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
    view.image = [UIImage imageNamed:@"selectedImage.png"];
}

- (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view {
    view.image = [UIImage imageNamed:@"pinImage.png"];
}

Your MKMapViewDelegate has the methods mapView:didSelectAnnotationView: and mapView:didDeselectAnnotationView:. You are passed the MKAnnotationView here, and you can modify it here. Put code like this in your delegate:

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
    view.image = [UIImage imageNamed:@"selectedImage.png"];
}

- (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view {
    view.image = [UIImage imageNamed:@"pinImage.png"];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文