0

どのUIButtonがタップされたかを検出するにはどうすればよいですか:

-(void) topScorer {

    UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];
    [button1 addTarget:self
                action:@selector(buttonClicked:)
     forControlEvents:UIControlEventTouchDown];
    [button1 setTitle:@"Button1" forState:UIControlStateNormal];
    button1.frame = CGRectMake(16, self.view.bounds.size.height*0.6, 60, 60);
    UIImage *img1 = [UIImage imageNamed:@"img1.png"];
    button1.layer.cornerRadius = 10;
    button1.layer.masksToBounds = YES;
    [button1 setImage:img1 forState:UIScrollViewDecelerationRateNormal];
    button1.tag = 1;
    [self.view addSubview:button1];

    UIButton *button2 = [UIButton buttonWithType:UIButtonTypeCustom];
    [button2 addTarget:self
            action:@selector(buttonClicked:)
      forControlEvents:UIControlEventTouchDown];
     [button2 setTitle:@"Button2" forState:UIControlStateNormal];
     button2.frame = CGRectMake(92, self.view.bounds.size.height*0.6, 60, 60);
     UIImage *img2 = [UIImage imageNamed:@"img2.png"];
     button2.layer.cornerRadius = 10;
     button2.layer.masksToBounds = YES;
     [button2 setImage:img2 forState:UIScrollViewDecelerationRateNormal];
     button2.tag = 2;
     [self.view addSubview:button2];
}


-(void) buttonClicked: (id)sender {

    // How can I detect here which button is tapped?
    // For Example, I want to do this:

    // if button1 is pressed, do something
    // if button 2 is pressed, do another thing

}
4

2 に答える 2

2

送信者を UIButton にキャストし、タグの値を比較します。

UIButton *button = (UIButton *)sender;

if (button.tag == 1) {

} else {

}
于 2013-05-27T00:53:52.640 に答える
1

ビュー コントローラーのプロパティにボタンを格納し、そのプロパティに対してチェックします。

@property (nonatomic, weak) UIButton *buttonOne;

- (void)buttonTapped:(id)sender {
    if (sender == buttonOne) {
        // button one was tapped
    }
}

または、各ボタンに異なるセレクターを割り当てるだけです。

[buttonOne addTarget:self
            action:@selector(buttonOneTapped:)
 forControlEvents:UIControlEventTouchUp];
[buttonTwo addTarget:self
            action:@selector(buttonTwoTapped:)
 forControlEvents:UIControlEventTouchUp];
于 2013-05-27T00:58:03.470 に答える