1

我有一个 NSManagedObject 的子类“Location”,这个类符合 MKAnnotation。

当我将位置添加到地图时...... ReverseGeocoder 启动。通过单击我在标注中看到的引脚查看引脚的地址。所以一切正常。

现在我的问题。

我可以拖动别针。当我完成拖动时,ReverseGeocoder 再次开始询问位置数据。但是我在标注视图中仍然有旧地址,尽管地标在 Location 对象中更新。再次拖动后,我可以看到新地址。(当然新的不再是新的了,因为我拖了)。

这是我的拖动状态代码:

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annotationView didChangeDragState:(MKAnnotationViewDragState)newState fromOldState:(MKAnnotationViewDragState)oldState{

//if dragging ended
if (newState == MKAnnotationViewDragStateNone && oldState == MKAnnotationViewDragStateEnding) {

    CLLocation *location = [[CLLocation alloc] initWithLatitude:annotationView.annotation.coordinate.latitude longitude:annotationView.annotation.coordinate.longitude];
    [self geocodeLocation:location forAnnotation:annotationView.annotation];
    [location release];
}

以及我的反向地理编码器代表的代码

- (void)reverseGeocoder:(MKReverseGeocoder*)geocoder didFindPlacemark:(MKPlacemark*)place
{
    Location*    theAnnotation = [self.map annotationForCoordinate:place.coordinate];
    if (!theAnnotation)
        return;
    // Associate the placemark with the annotation.
    theAnnotation.city = [place locality];
    theAnnotation.zipcode = [place postalCode];
    theAnnotation.street = [place thoroughfare];

    DEBUGLOG(@"Place: %@", place);


    // Add a More Info button to the annotation's view.
    MKPinAnnotationView*  view = (MKPinAnnotationView*)[self.map viewForAnnotation:theAnnotation];
    if (view)
    {
        DEBUGLOG(@"SUBTITLE: %@", theAnnotation.subtitle);
        view.leftCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];

    }
}

任何帮助都会很棒。最后,地图应用程序是通过拖动来做到这一点的最佳示例。

4

1 回答 1

2

我想通了。

由于 KVO,我必须设置 Location 对象的字幕。所以它被显示出来。

但是因为 subtilte 是由

// Associate the placemark with the annotation.
theAnnotation.city = [place locality];
theAnnotation.zipcode = [place postalCode];
theAnnotation.street = [place thoroughfare];

我只需要在我的 NSManagedObject 子类中执行以下操作。

- (void) setSubtitle:(NSString *)title{ //do nothing}
于 2010-12-04T11:52:59.783 回答