0

私は iphone 開発の初心者で、注釈の吹き出しにカスタム ボタンを追加しようとしています。通常のボタンを rightCalloutAccessoryView に追加しても問題はありませんが、カスタム スタイルでは機能しません。私の画像サイズは 32 x 32 です。また、このスタックオーバーフローの質問に続いて、カスタム マップ ピンを追加したいと思います

マイコード

-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
// Define your reuse identifier.
static NSString *identifier = @"MapPoint";   

if ([annotation isKindOfClass:[MapPoint class]]) {
    MKPinAnnotationView *annotationView = (MKPinAnnotationView *) [self.mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
    if (annotationView == nil) {
        annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
    } else {
        annotationView.annotation = annotation;
    }
    annotationView.enabled = YES;
    annotationView.canShowCallout = YES;
    annotationView.animatesDrop = YES;
    annotationView.image = [UIImage imageNamed:@"myimage.png"];

    UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeCustom];
    //UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    [rightButton setImage:[UIImage imageNamed:@"phony2.png"] forState:UIControlStateNormal];
    [rightButton addTarget:self
                    action:@selector(showDetails:)
          forControlEvents:UIControlEventTouchUpInside];
    annotationView.rightCalloutAccessoryView = rightButton;

    return annotationView;
}
return nil;    

}

4

1 に答える 1

2
 [rightButton addTarget:self
                action:@selector(showDetails:)

この行を削除し、ボタンのフレームを設定します

[rightButton setFrame:CGRectMake(0,0,32,32)];

degate メソッドからタップ アクションを取得します。

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control;

注釈ビューを取得する場所。

これがあなたを助けることを願っています。

于 2013-02-28T13:38:43.090 に答える