作業中のマップでピンをカスタマイズしようとしています
-(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;
}