1

以下のコードを実行しているため、すべてのピンに対して異なる画像を表示する必要があるマップビューに複数のピンをドロップしています。

- (void)dropMultiplePinAnnotation:(NSArray *)arrThumbnail
{
    [self removeAnnotations:[self annotations]];

    for(Annotation *Annot in arrThumbnail) {

        self.pinImageName = Annot.PinImage;
        Annot.coordinate = Detail.coordinate;
        [self addAnnotation:Annot];
        //Till ios6, after this line viewForAnnotation gets called so that I can assign new pin image everytime but in ios7 viewforAnnotation called after this loop ends so it set pin image which was latest saved in self.pinImageName
    }    
}

- (MKAnnotationView *)mapView:(MKMapView *)map viewForAnnotation:(id <MKAnnotation>)annotation
{
    static NSString *AnnotViewID = @"annotViewID";
    MKAnnotationView *annotationView = (MKAnnotationView *)[self dequeueReusableAnnotationViewWithIdentifier:AnnotViewID];

    if (annotationView == nil) {
        annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:AnnotViewID];
    }
    annotationView.canShowCallout = NO;

    annotationView.image = [UIImage imageNamed:self.pinImageName];
    annotationView.annotation = annotation;

    return annotationView;
}
4

3 に答える 3

1

あなたのコードは、そのデリゲート メソッドがいつ呼び出されるかについて何も想定できません。iOS 6 の下でも、これが壊れる場合があると思います。

[annotation PinImage]代わりに使用しないのはなぜself.pinImageNameですか?渡される注釈オブジェクトmapView:viewForAnnotation:は、上で渡したものと同じですaddAnnotation:

于 2013-10-24T11:42:33.840 に答える
0

以下のコードを実行しているため、すべてのピンに対して異なる画像を表示する必要があるマップビューに複数のピンをドロップしています。

- (void)dropMultiplePinAnnotation:(NSArray *)arrThumbnail

    {
        [self removeAnnotations:[self annotations]];

        for(Annotation *Annot in arrThumbnail) {

            self.pinImageName = Annot.PinImage;
            Annot.coordinate = Detail.coordinate;
            [self addAnnotation:Annot];
       [_mapView setRegion:MKCoordinateRegionMake(Annot.coordinate,      MKCoordinateSpanMake(0.004,0.004))];
            //So you can fire every time viewForAnnotation delegate after every annotation adding to MKMapView
        }    
    }

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

    static NSString *AnnotViewID = @"annotViewID";
        MKAnnotationView *annotationView = (MKAnnotationView *)[self dequeueReusableAnnotationViewWithIdentifier:AnnotViewID];

        if (annotationView == nil) {
            annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:AnnotViewID];
        }
        annotationView.canShowCallout = NO;

        annotationView.image = [UIImage imageNamed:self.pinImageName];
        annotationView.annotation = annotation;

        return annotationView;
    }
于 2014-01-29T05:48:21.173 に答える