func mapView(mapView: MKMapView!,
viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
var annotationView = self.mapView
.dequeueReusableAnnotationViewWithIdentifier("PIN_ANNOTATION")
as? MKPinAnnotationView
if annotationView == nil {
annotationView = MKPinAnnotationView(annotation: annotation,
reuseIdentifier: "PIN_ANNOTATION")
}
annotationView!.pinColor = MKPinAnnotationColor.Purple
annotationView!.animatesDrop = true
annotationView!.canShowCallout = true
return annotationView!
}
- (MKAnnotationView *) mapView:(MKMapView *)theMapView
viewForAnnotation:(id
MKPinAnnotationView *annotationView
= (MKPinAnnotationView *)[self.mapView
dequeueReusableAnnotationViewWithIdentifier:@"PIN_ANNOTATION"];
if(annotationView == nil) {
annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:@"PIN_ANNOTATION"];
}
annotationView.pinColor = MKPinAnnotationColorPurple;
annotationView.animatesDrop = YES;
annotationView.canShowCallout = YES;
return annotationView;
}
以上代码是地图视图中常用的处理方式,希望对大家有所帮助。如果还有哪些不明白的地方,可随时来电咨询。本公司专注于南昌APP开发等方面的服务,如有需要,我们将随时为您效劳。