如何在 MKMapView 上仅添加新注释?
例如,在 MKMapView 上我有 100 个注释。当我缩小地图时,我只需要更新十个新注释。但系统更新了110条注释。如何在 MKMapView 上仅添加新注释?
On MKMapView i have for example 100 annotations. When i zoom out the map i need to update only ten new annontations. But the system updates 110 annotations. How to add only new annotations on MKMapView ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过
[mapView addAnnotations:additionalAnnotations]
? (其中additionalAnnotations是“新”注释的数组)Have you tried
[mapView addAnnotations:additionalAnnotations]
? (where additionalAnnotations is an array of the 'new' annotations)