[MKAnnotationView setAnimatesDrop:]:发送到实例的无法识别的选择器。但为什么?

发布于 2024-11-09 14:10:42 字数 1085 浏览 0 评论 0原文

(MKAnnotationView *) mapView:(MKMapView *)theMapView
             viewForAnnotation:(id <MKAnnotation>)annotation
{
    if ([annotation isKindOfClass: [MyLocation class] ])
    {
        MKPinAnnotationView *annotationView = (MKPinAnnotationView *) [theMapView dequeueReusableAnnotationViewWithIdentifier:placemarkIdentifier];
        if(annotationView == nil)
        {
            annotationView = [[MKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:placemarkIdentifier];
        }
        else 
        {

            annotationView.annotation = annotation;         
        }

        annotationView.enabled = YES;
        annotationView.animatesDrop = NO;
        annotationView.pinColor = MKPinAnnotationColorPurple;
        annotationView.canShowCallout = YES;
        annotationView.draggable = YES;


       return annotationView;
    }
}

[MKAnnotationView setAnimatesDrop:]: 无法识别的选择器发送到实例。 我使用了许多注释类(MKPinAnnotationView 和 MKAnnotationView)。可能是因为我使用 dequeueReusableAnnotationViewWithIdentifier 才发生此错误。

(MKAnnotationView *) mapView:(MKMapView *)theMapView
             viewForAnnotation:(id <MKAnnotation>)annotation
{
    if ([annotation isKindOfClass: [MyLocation class] ])
    {
        MKPinAnnotationView *annotationView = (MKPinAnnotationView *) [theMapView dequeueReusableAnnotationViewWithIdentifier:placemarkIdentifier];
        if(annotationView == nil)
        {
            annotationView = [[MKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:placemarkIdentifier];
        }
        else 
        {

            annotationView.annotation = annotation;         
        }

        annotationView.enabled = YES;
        annotationView.animatesDrop = NO;
        annotationView.pinColor = MKPinAnnotationColorPurple;
        annotationView.canShowCallout = YES;
        annotationView.draggable = YES;


       return annotationView;
    }
}

[MKAnnotationView setAnimatesDrop:]: unrecognized selector sent to instance.
I use a number of annotations classes (MKPinAnnotationView and MKAnnotationView). May be this error occurred because I use the dequeueReusableAnnotationViewWithIdentifier.

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

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

发布评论

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

评论(1

请远离我 2024-11-16 14:10:42

您应该为两种类型的注释视图分配不同的标识符。否则,您将以 MKPinAnnotationView 结束,其中只需要一个 MKAnnotationView ,反之亦然(您在这里已经经历过)。

You should assign different identifiers for both types of annotation views. Otherwise, you will end with MKPinAnnotationView where just an MKAnnotationView is expected and vice versa (which you've experienced here).

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