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