iphone - 在地图视图中隐藏注释视图

发布于 2024-10-15 18:16:00 字数 186 浏览 3 评论 0原文

在我看来,我的导航栏位于顶部,其余视图充满了地图视图。 我的地图视图有图钉,单击图钉时,它也会显示注释。 在右上角的导航栏中,我有一个按钮,单击它后,我想删除弹出的注释视图。 (无论有什么注释视图,我想从视图中删除)。 有人可以告诉我该怎么做吗?

我们可以做的简单任务是将一些触摸事件发送到地图视图,这将隐藏它......我是对的。怎么办呢?

In my view, i've nav bar at the top and remaining view is filled with map view.
My Map view has pins and on click of pin, it will show annotations also.
In the top right nav bar i've a button and on click of it, i want to remove the annotation view that popped up. (what ever annotation view is there, i want to remove from the view).
Can some one tell me how to do it.

The simple task we can do is to send some touch event to the map view which will hide it..... am i right. how to do it?

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

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

发布评论

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

评论(1

兮子 2024-10-22 18:16:00

要隐藏标注,您所需要做的就是取消选择选定的注释。您可以通过使用...

- (void)deselectAnnotation:(id < MKAnnotation >)annotation animated:(BOOL)animated

例如:

[mapView deselectAnnotation:[mapView.selectedAnnotations objectAtIndex:0] animated:YES];

假设 mapView 是您为 MKMapView 实例命名的名称。

To hide the callout all you need to do is deselect the selected annotation. You do that by using...

- (void)deselectAnnotation:(id < MKAnnotation >)annotation animated:(BOOL)animated

For example:

[mapView deselectAnnotation:[mapView.selectedAnnotations objectAtIndex:0] animated:YES];

assuming mapView is what you named your MKMapView instance.

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