从地图视图中删除注释时出现问题

发布于 2024-12-01 01:54:46 字数 570 浏览 1 评论 0原文

我将添加的所有注释存储在单独的数组中。当我尝试使用以下代码删除已添加到 mapView 的注释时:

if(![newClusters containsObject:cluster]){
    [__mapView removeAnnotations:[__clusterAnnotations objectAtIndex:[__clusters indexOfObject:cluster]]];
    [__clusterAnnotations removeObjectAtIndex:[__clusters indexOfObject:cluster]];
    [__clusters removeObject:cluster];
}

我收到以下错误:

-[ClusterAnnotationClass countByEnumeratingWithState:objects:count:]: unrecognized selector sent to instance

我不确定这意味着什么,我可以添加任何注释。从地图视图中删除时会崩溃。

任何帮助将不胜感激。

I am storing all the annotations I am adding in a separate array. When I try to remove an annotation that has been added to the mapView using the following code:

if(![newClusters containsObject:cluster]){
    [__mapView removeAnnotations:[__clusterAnnotations objectAtIndex:[__clusters indexOfObject:cluster]]];
    [__clusterAnnotations removeObjectAtIndex:[__clusters indexOfObject:cluster]];
    [__clusters removeObject:cluster];
}

I get the following error:

-[ClusterAnnotationClass countByEnumeratingWithState:objects:count:]: unrecognized selector sent to instance

I'm not sure what this means, and I can add in any annotation just fine. It crashes when removing from the mapView.

Any help would be appreciated.

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

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

发布评论

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

评论(1

洋洋洒洒 2024-12-08 01:54:46

您正在调用 removeAnnotations (复数),它接受一个注释数组,但看起来您传递的对象不是一个数组。

也许您想调用 removeAnnotation (单数)?

You are calling removeAnnotations (plural) which takes an array of annotations but it looks like the object you are passing it is not an array.

Perhaps you meant to call removeAnnotation (singular)?

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