这是我的动作代码,应该在单击注释标注时发生。它应该带我到一个新的ViewController,但不是。这段代码中是否有一个小错误,或者它是一个更大的问题?
- (void)mapView:(MKMapView *)mapView
annotationView:(MKAnnotationView *)view
calloutAccessoryControlTapped:(UIControl *)control {
NSLog(@"calloutAccessoryControlTapped");
det = [[UIViewController alloc]init];
[self.navigationController pushViewController:det animated:YES];
}