MKMapView viewForAnnotation:返回nil

时间:2012-10-04 05:14:14

标签: objective-c mkmapview mkpinannotationview

我正在尝试从地图中删除一个图钉。我有一个观察者在MKPinAnnotationView的@“selected”属性上,所以我知道要删除哪个对象。当用户点击垃圾桶图标并选择一个图钉时,会调用此方法:

- (IBAction)deleteAnnotationView:(id)sender {
    MKPinAnnotationView *pinView = (MKPinAnnotationView *)[self.mapView viewForAnnotation:self.currentAddress];
    [pinView removeObserver:self forKeyPath:@"selected"];

    [self.mapView removeAnnotation:self.currentAddress];
    [self.map removeLocationsObject:self.currentAddress];
}

如果我不将引脚拖到任何地方,此方法可以正常工作。如果我拖动引脚,上面方法中的pinView将返回nil,并且MKPinAnnotationView永远不会从MKMapView中删除。我不知道为什么。这是didChangeDragState委托方法:

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view didChangeDragState:(MKAnnotationViewDragState)newState fromOldState:(MKAnnotationViewDragState)oldState {
    if (newState == MKAnnotationViewDragStateEnding) {
        CLLocationCoordinate2D draggedCoordinate = view.annotation.coordinate;

        CLGeocoder *geocoder = [[CLGeocoder alloc] init];
        CLLocation *location = [[CLLocation alloc] initWithLatitude:draggedCoordinate.latitude longitude:draggedCoordinate.longitude];
        [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks, NSError *error) {
            // Check for returned placemarks
            if (placemarks && [placemarks count] > 0) {
                CLPlacemark *topResult = [placemarks objectAtIndex:0];

                AddressAnnotation *anAddress = [AddressAnnotation annotationWithPlacemark:topResult inContext:self.managedObjectContext];
                view.annotation = anAddress;
                self.currentAddress = anAddress;
            }
        }];
    }
}

在didChangeDragState:和deleteAnnotationView:方法中,我的self.address对象都有一个有效的地址。但由于某种原因,当拖动引脚时,pinView为零。有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:0)

通过KVO观察注释视图selected属性应该是不必要的,因为didSelectAnnotationView委托方法和selectedAnnotations {更好] MKMapView中的财产。

假设用户在选择引脚后点击垃圾箱,垃圾桶点击方法可以通过selectedAnnotations属性获取当前选择的注释。例如:

if (mapView.selectedAnnotations.count == 0)
{
    //No annotation currently selected
}
else
{
    //The currently selected annotation is the first object in the array...
    id<MKAnnotation> ann = [mapView.selectedAnnotations objectAtIndex:0];

    //do something with ann...
}

在上面的例子中,没有必要访问注释的视图,没有观察者,也不需要你自己的&#34; currentAddress&#34;属性。

如果您希望在选择注释时立即执行某些操作,则可以将代码放在didSelectAnnotationView委托方法中。在那里,选择的注释是view.annotation


关于拖尾问题,当前代码完全取代了视图annotation。我认为在viewForAnnotation委托方法中创建或重用视图时,这只是一个好主意。在drag-end方法中,您应该尝试更新view.annotation的属性,而不是替换为全新的对象。