OStack程序员社区-中国程序员成长平台

标题: ios - MKAnnotation 不显示相应的图标 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 07:27
标题: ios - MKAnnotation 不显示相应的图标

我在 map 中使用自定义图标作为注释。 大约有 200 个引脚。

在模拟器中,我的 map 看起来像这张图片。

enter image description here

但是,在我的设备中,我的 userLocation 附近有一些红点注释。 就像下图所示。 enter image description here

我猜这是由速度引起的某种运行时问题,是吗? 我该怎么做才能解决这个问题?

我正在使用两个类

ViewController.m

- (MKAnnotationView *)mapViewMKMapView *)mapView viewForAnnotationid    
      <MKAnnotation>)annotation
{
   return [kmlParser viewForAnnotation:annotation];
}

KMLParser.m

- (MKAnnotationView *)viewForAnnotationid <MKAnnotation>)point
{
// Find the KMLPlacemark object that owns this point and get
// the view from it.
for (KMLPlacemark *placemark in _placemarks) {
    if ([placemark point] == point)
        return [placemark annotationView];
}
return nil;
}

- (MKAnnotationView *)annotationView
{
if (!annotationView) {
    id <MKAnnotation> annotation = [self point];
    if (annotation) {
        MKPinAnnotationView *pin =
        [[MKPinAnnotationView alloc] initWithAnnotation:annotation   
        reuseIdentifier:nil];
        UIImage * img = [UIImage imageNamed"WaterStation"] ;
        CGRect resizeRect;
        resizeRect.size.height = 40;
        resizeRect.size.width = 40;
        resizeRect.origin = (CGPoint){0.0f, 0.0f};
        UIGraphicsBeginImageContext(resizeRect.size);
        [img drawInRect:resizeRect];
        UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
        pin.image = resizedImage;
        pin.canShowCallout = YES;
        pin.animatesDrop = YES;
        annotationView = pin;
    }
}
return annotationView;
}



Best Answer-推荐答案


创建一个普通的MKAnnotationView,而不是创建一个MKPinAnnotationView

MKPinAnnotationView 子类倾向于忽略 image 属性,因为它被设计为仅显示标准的红色、绿色、紫色引脚(通过 pinColor 属性(property))。

当您切换到 MKAnnotationView 时,您还必须注释掉 animatesDrop 行,因为该属性是特定于 MKPinAnnotationView 的。


@omz 在评论中提到的一个不会导致图像显示问题但会影响性能的单独点:

每次您都不需要以编程方式创建重新调整大小的图像需要注释 View :

关于ios - MKAnnotation 不显示相应的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22990474/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4