iphone - 在地图视图中隐藏注释视图
在我看来,我的导航栏位于顶部,其余视图充满了地图视图。 我的地图视图有图钉,单击图钉时,它也会显示注释。 在右上角的导航栏中,我有一个按钮,单击它后,我想删除弹出的注释视图。 (无论有什么注释视图,我想从视图中删除)。 有人可以告诉我该怎么做吗?
我们可以做的简单任务是将一些触摸事件发送到地图视图,这将隐藏它......我是对的。怎么办呢?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要隐藏标注,您所需要做的就是取消选择选定的注释。您可以通过使用...
例如:
假设
mapView
是您为 MKMapView 实例命名的名称。To hide the callout all you need to do is deselect the selected annotation. You do that by using...
For example:
assuming
mapView
is what you named your MKMapView instance.