MKPointAnnotation 标题不显示且注释不可拖动

MKPointAnnotation title not showing and annotation not draggable

我认为这两者是相关的,我可能在这里做错了什么:

首先我要覆盖 viewForAnnotation - 为了放置我的自定义图像

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
    // we avoid changing the user's location blue point
    if([annotation isKindOfClass: [MKUserLocation class]]) {
      return nil;
    }
    else
    {
    static NSString *SFAnnotationIdentifier = @"SFAnnotationIdentifier";
    MKPinAnnotationView* pinAnnotationView = (MKPinAnnotationView*)[self.mapToPin dequeueReusableAnnotationViewWithIdentifier:SFAnnotationIdentifier];

     if (!pinAnnotationView)
          {
              MKAnnotationView *annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation
                                                                 reuseIdentifier:SFAnnotationIdentifier];
                  UIImage *littleImage = [UIImage imageNamed:@"littleImage.png"];
                  // You may need to resize the image here.
                  annotationView.image = littleImage;
              
                  pinAnnotationView.draggable = true;
                  pinAnnotationView.canShowCallout = true;
                  pinAnnotationView.animatesDrop = true;
                  return annotationView;
          }
          else
          {
              pinAnnotationView.annotation = annotation;
          }
          return pinAnnotationView;
    }
    

}

pinAnnotationView 的 draggablecanShowCalloutanimatesDrop 似乎不起作用。

然后,我在 viewDidLoad 中调用我的方法来设置注释

-(void) setAnnotation:(NSString*)lat : (NSString*)lng
{
    _mapAnnotation = [[MKPointAnnotation alloc] init];
    CLLocationCoordinate2D coordinateForPin;
    coordinateForPin.latitude = [lat floatValue];
    coordinateForPin.longitude = [lng floatValue];
    [_mapAnnotation setCoordinate:coordinateForPin];
    [_mapAnnotation setTitle:@"sometitle"];
    [_mapToPin addAnnotation:_mapAnnotation];
}

好像[_mapAnnotation setTitle:@"sometitle"];当我覆盖 viewForAnnotation 时不再工作。

这是正确的方法吗?我一直在浏览,但没有找到任何可以提供帮助的解决方案。如有任何反馈,我们将不胜感激。

问题是意外引用了错误的变量名。 pinAnnotationViewif 语句中是 nil,因此使用 nil 引用设置属性是一个 NOOP。


if (!pinAnnotationView) {
    MKAnnotationView *annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation
                                                                    reuseIdentifier:SFAnnotationIdentifier];

    ...

    annotationView.draggable = true;      // not pinAnnotationView
    annotationView.canShowCallout = true;
    annotationView.animatesDrop = true;

    return annotationView;
}

FWIW,如果目标是 iOS 10 或更高版本,您可以注册自己的 class 并将注释视图配置代码移动到该子 class 中。此外,在 iOS 11 及更高版本中,您根本不需要 mapView:viewForAnnotation:

例如,在 iOS 11 及更高版本中:

//  MyAnnotationView.h

@import MapKit;

NS_ASSUME_NONNULL_BEGIN

@interface MyAnnotationView : MKPinAnnotationView

@end

NS_ASSUME_NONNULL_END

//  MyAnnotationView.m

#import "MyAnnotationView.h"

@implementation MyAnnotationView

- (instancetype)initWithAnnotation:(id<MKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier];

    if (self) {
        ...

        self.draggable = true;
        self.canShowCallout = true;
        self.animatesDrop = true;
    }

    return self;
}

@end

然后,在您的 viewDidLoad 中注册此 class。

- (void)viewDidLoad {
    [super viewDidLoad];

    [self.mapView registerClass:[MyAnnotationView class] forAnnotationViewWithReuseIdentifier:MKMapViewDefaultAnnotationViewReuseIdentifier];
    ...
}

然后您可以完全删除 mapView:viewForAnnotation: 实现。