0
for (MyAnnotation *a in dealerMapView.annotations) {
    // Your current position (if shown) is an annotation as well. Thus check for the right class!
    if ([a isKindOfClass:[MyAnnotation class]]) {
        // insert some smart if statement here, if you have multiple annotations!
        [[dealerMapView viewForAnnotation:a] setSelected:YES animated:YES];
    }
}

上記のコードを使用しましたが、ピンに情報が表示されません。

4

1 に答える 1

0
[self.dealerMapView selectAnnotation:myAnnotation2 animated:YES];

このステートメントを使用して、注釈に関する情報を表示するようになりました。

于 2013-02-25T06:08:28.657 に答える