单击注释并更改颜色

时间:2013-01-17 04:10:28

标签: ios annotations mapkit

我想在用户点击时更改注释颜色。我的代码就像那样

- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation
{MKPinAnnotationView *annotationView = [[MKPinAnnotationView alloc]initWithAnnotation:view.annotation reuseIdentifier:@"annon1"];
[annotationView setPinColor:MKPinAnnotationColorGreen];
[annotationView setCanShowCallout:YES];
[innerMap selectAnnotation:annotationView.annotation animated:YES];
}

但对我不起作用。谁都可以帮帮我?

0 个答案:

没有答案