我应该删除或隐藏 MKMapView 中的注释吗?
我想知道从地图上删除注释时哪个会更快/更有效:隐藏或删除。每次用户放大或缩小时,我都需要删除和添加 100 个左右的图钉。
我可以使用 setHidden:
循环并隐藏所有注释,或者使用 removeAnnotations:
删除它们。我不确定哪种方法更好。
I was wondering which would be faster/more efficient when it comes to taking off annotations from the map: hiding or removing. I need to remove and add 100 or so pins every time the user zooms in or out.
I can either loop through and hide all annotations using setHidden:
, or just remove them using removeAnnotations:
. I'm not sure which would be a better method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信标准方法是删除它们。更少的内存开销。并不是说 100 占用那么多,但最好在需要时删除并重新添加,然后隐藏。
I believe the standard method is to remove them. Less memory overhead. Not that 100 takes up that much, but still better to remove and re-add when needed then to hide.