Настроить пин-код аннотации в MKMapKit
Я пытаюсь настроить булавки на моей карте, работая над
-(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;
}