我正在尝试在我的地图上自定义图钉
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation
ColonnineController 类中的方法
但它不起作用,我该如何解决?谢谢你!
这里的方法:
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation{
static NSString * parkingAnnotationIdentifier = @"ParkingAnnotationIdentifier";
if([ annotation isKindOfClass:[DisplayMap class]]){
MKAnnotationView *annotationView=[mapView dequeueReusableAnnotationViewWithIdentifier:parkingAnnotationIdentifier];
if(!annotationView){
annotationView=[[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:parkingAnnotationIdentifier];
annotationView.image=[UIImage imageNamed:@"parkingIcon.png"];
}
return annotationView;
}
return nil;
}