我想在用户点击时更改注释颜色。我的代码就像那样
- (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];
}
但对我不起作用。谁都可以帮帮我?