MKMapView 注释图像更改为单击时固定

发布于 2024-10-16 19:59:37 字数 88 浏览 1 评论 0原文

我的 iPhone 地图视图应用程序,当我点击注释图像时,它会变成图钉。谁能告诉我如何纠正它?

我的想法是显示图像而不是自定义图钉,即使它被单击。

Im my iphone mapview application when i click on the annotation images it get change into pin. Can anyone please tell me how can i correct it?

My idea is to display a image instead of custom pin, even though it is clicked.

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

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

发布评论

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

评论(1

躲猫猫 2024-10-23 19:59:37

当您单击注释时,将调用该委托

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
//I think here you will be adding a annotation(my assumption)
[mapView addAnnotation:yourAnnotation];
//This will call viewForAnnotation again
}


- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
//If you didnt specify the a image for the annotation the default pin image will be assigned here..
}

如果我的假设是错误的,则将您的代码发布到此处相关注释,这样您就可以获得更好的答案

When you click on a annotation this delegate will be called

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
//I think here you will be adding a annotation(my assumption)
[mapView addAnnotation:yourAnnotation];
//This will call viewForAnnotation again
}


- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
//If you didnt specify the a image for the annotation the default pin image will be assigned here..
}

If my assumption is wrong then post your code here related annotations, So you can get better answers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文