2

マップキットに現在地の注釈(青い点)が表示されています。青い点をタップすると注釈が表示されますが、ビューを開始したときに、デフォルトで注釈を表示するにはどうすればよいですか?ピンを軽くたたく。

 - (void)mapView:(MKMapView *)mv didAddAnnotationViews:(NSArray *)views {
    for(MKAnnotationView *annotationView in views) {
        if(annotationView.annotation == mv.userLocation) {

            self.mapView.userLocation.title= @"Current";
            self.mapView.userLocation.subtitle= @"Location";

            MKCoordinateRegion region;
            MKCoordinateSpan span;

            span.latitudeDelta=0.002;
            span.longitudeDelta=0.002; 

            CLLocationCoordinate2D location=mv.userLocation.coordinate;

            region.span=span;
            region.center=location;

            [mv setRegion:region animated:YES];
            [mv regionThatFits:region];

        }
    }

}
4

1 に答える 1

1

その場合、selectAnnotation が機能するはずですよね。しばらくして Selector を実行するだけです。

.... 前と同じコードですが、これを挿入します。

            id annotation = annotationView.annotation;
            [self performSelector:@selector(selectUserLocation:) withObject:annotation afterDelay:0.1f];
        }
    }
}

- (void)selectUserLocation:(id)annotation{
    [self.mapView selectAnnotation:annotation animated:YES];
}
于 2012-05-11T19:46:48.243 に答える