3

注釈ビューにボタンを追加したところ、正しく表示されました。ボタンをタップすると電話をかけたいのですが、ボタンをタップしても反応しません(ボタンがハイライトすらしません)。ボタンがタッチイベントを受信して​​いないようですが、理由はわかりません。

これがcustomAnnotationView.mの私のコードです

- (id)initWithAnnotation:(id <MKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier
{
    NSLog(@"initWithAnnotation start");

    //initialze the view
    self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier];
    if (self != nil)
    {
        CGRect frame = self.frame;
        frame.size = CGSizeMake(60.0, 85.0);
        self.frame = frame;
        self.backgroundColor = [UIColor clearColor];
        self.centerOffset = CGPointMake(30.0, 42.0);
    }

    //this has nothing to do with my question
    self.title=[[[NSString alloc] init] autorelease];
    self.description=[[[NSString alloc] init] autorelease];
    self.phoneNumber=[[[NSString alloc] init] autorelease];
    customAnnotation * tempCust = (customAnnotation *)annotation;       
    self.title=annotation.title;
    self.description=tempCust.description;
    self.phoneNumber=tempCust.phoneNumber;

    //here is the question button
    self.userInteractionEnabled=YES;
    self.exclusiveTouch=NO;
    UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect];
    [button setTitle:@"Call" forState:UIControlStateNormal];
    //decide the button's position
    CGRect rect=button.frame;
    rect.origin.x=15;
    rect.origin.y=47;
    rect.size.width=40;
    rect.size.height=20;
    button.frame=rect;
    [self addSubview:button];

    [button becomeFirstResponder];

    [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];



    NSLog(@"initWithAnnotation finished");

    return self;
}

//action method
-(void)buttonClicked:(id)sender{
    NSString *callNumber=[[[NSString alloc] initWithFormat:@"tel://%@",self.phoneNumber] autorelease];
    [[UIApplication sharedApplication]openURL:[NSURL URLWithString:callNumber]];
}

ボタンが機能しないのはなぜですか?

4

1 に答える 1

1
self.rightCalloutAccessoryView = button;

代わりに上記を使用してください[self addSubview:button];

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

于 2012-12-14T04:28:47.067 に答える