从 MapView 中删除多个注释

发布于 2024-11-04 08:21:31 字数 165 浏览 0 评论 0原文

在我的应用程序中,当我的表视图加载时,我有两个功能,在地图视图中,所有引脚都显示与 tableData 相对应。现在我有搜索栏,它提供了我必须在地图视图上显示的另一组值。一切都工作正常,但第二还显示以前的引脚意味着以前的注释未被删除。 所以请告诉我如何删除以前的注释,以便我可以在地图视图上仅显示相关的引脚 提前致谢

In my app I have two functionality when my tableview loads ,in the mapview all the pins are shown corresponding to tableData.NOw I have search bar which gives another set of values which I have to show on my mapView.Everything is working fine but second time previous pins are also shown means prevoius annotations are not deleted .
So please tell me how to remove prevoius annotation so that I can show only relavent pins on mapView
Thanks in advance

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

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

发布评论

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

评论(2

独闯女儿国 2024-11-11 08:21:31

只需使用 MKMapView 实例方法“removeAnnotations:”:

-(void)removeAnnotations:(NSArray *)annotations

http:// developer.apple.com/library/ios/#documentation/MapKit/Reference/MKMapView_Class/MKMapView/MKMapView.html

如果您想删除所有这些,您可以执行以下操作:

[mapView removeAnnotations:mapView.annotations];

PS:请注意,您可能想要迭代注释而不是删除 userLocation (蓝点)

希望这有帮助,
文森特

Simply use the MKMapView instance method "removeAnnotations:":

-(void)removeAnnotations:(NSArray *)annotations

http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MKMapView_Class/MKMapView/MKMapView.html

If you want to remove all of them you can do somethign like :

[mapView removeAnnotations:mapView.annotations];

P.S: Beware that you might want to iterate through the annotations not to remove the userLocation (blue dot)

Hope this helps,
Vincent

℡Ms空城旧梦 2024-11-11 08:21:31

我自己得到了答案:-mapAddAnnotations

是我的数组名称,map 是我的 mkmapview 对象。

[map removeAnnotations:self.mapAddAnnotations];

I got my answer my self:-

mapAddAnnotations is my arrayname and map is my mkmapview object.

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