我正在制作一个使用MKMapView的应用程序。我添加自定义图钉(带有图片)。现在,当我放大然后缩小时,图钉会变回默认值(红色)。

这是我的代码:

    - (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation
    {
        static NSString* SFAnnotationIdentifier = @"Kamera";
        MKPinAnnotationView* pinView =
        (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:SFAnnotationIdentifier];
        if (!pinView)
        {
            MKAnnotationView *annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation
                                                                             reuseIdentifier:SFAnnotationIdentifier];
            annotationView.canShowCallout = NO;

            UIImage *flagImage = [UIImage imageNamed:@"pinModer.png"];

            CGRect resizeRect;

            resizeRect.size = flagImage.size;
            resizeRect.size = CGSizeMake(40, 60);
            resizeRect.origin = (CGPoint){0.0f, 0.0f};
            UIGraphicsBeginImageContext(resizeRect.size);
            [flagImage drawInRect:resizeRect];
            UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
            UIGraphicsEndImageContext();
            annotationView.image = resizedImage;
            annotationView.opaque = NO;

            UIImageView *sfIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"kameraNaprejModra.png"]];
            annotationView.leftCalloutAccessoryView = sfIconView;

            return annotationView;

    }
    return nil;
}

最佳答案

该代码无法处理dequeue返回非nil pinView(意味着它正在重新使用先前的注释视图)的情况。

如果pinView不是nil,则该方法结束于最后一行,该行返回注释视图的nil

当您返回nil时, map 视图将绘制默认的注释视图,该视图为红色大头针。

调整代码如下:

if (!pinView)
{
    //no changes to code inside this if
    //...
    return annotationView;
}
//add an else part and return pinView instead of nil...
else
{
    pinView.annotation = annotation;
}

return pinView;

关于iphone - 当我放大和缩小时,MKMapView自定义图钉会更改,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13198166/

10-13 04:17