iphone--Map Pin属性相关

修改mapview的pin相关属性:

 

MKMapViewDelegate实现协议。

-(MKAnnotationView *) mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation

{

MKPinAnnotationView *pinView=nil;

if(annotation!=mapView.userLocation)

{

static NSString *defaultPinID=@"com.invasivecode.pin";

pinView=(MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:defaultPinID];

if(pinView==nil)pinView=[[[MKPinAnnotationView alloc]initWithAnnotation:annotationreuseIdentifier:defaultPinID] autorelease];

//pinView.pinColor=MKPinAnnotationColorRed;

pinView.pinColor=MKPinAnnotationColorPurple;

pinView.canShowCallout=YES;

pinView.animatesDrop=YES;

}

else {

[mapView.userLocation setTitle:@"I am here"];

}

return pinView;


}

你可能感兴趣的:(iphone--Map Pin属性相关)