0

作業中のマップでピンをカスタマイズしようとしています

-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotationColonnineController クラスのメソッド

うまくいかないのですが、どうすれば解決できますか?よろしくお願いします!

ここにソースコードがあります

ここに方法があります:

-(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;
}
4

0 に答える 0