注释标注操作不起作用

时间:2013-09-19 00:08:39

标签: ios uinavigationcontroller annotations mkmapview callouts

这是我的动作代码,应该在单击注释标注时发生。它应该带我到一个新的ViewController,但不是。这段代码中是否有一个小错误,或者它是一个更大的问题?

- (void)mapView:(MKMapView *)mapView
 annotationView:(MKAnnotationView *)view
calloutAccessoryControlTapped:(UIControl *)control {
    NSLog(@"calloutAccessoryControlTapped");
    det = [[UIViewController alloc]init];
    [self.navigationController pushViewController:det animated:YES];
}

0 个答案:

没有答案