Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my app, I wrote these lines of code :

- (void)viewDidLoad {
[super viewDidLoad];

UITapGestureRecognizer *tapper = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapped:)];

[mybutton1 addGestureRecognizer:tapper];
[mybutton2 addGestureRecognizer:tapper];
[mybutton3 addGestureRecognizer:tapper];

    [tapper release];
}

-(void)tapped:(UIGestureRecognizer *)sender{
NSLog(@"I'am in tapped");


}

but nothing happened. why ? and if I need to get the button's currentTitle inside tapped, can I ?

Thanks

share|improve this question

3 Answers

up vote 0 down vote accepted

You're missing the recognizer delegate. Implement that. You should also add the UIGestureRecognizerDelegate protocol to your header file and make recognizer.delegate = self.

re: getting the title - you can get the title. in your tap event handler you can extract that information from the sender object. i'll post some code later...

share|improve this answer
ok Im wanting u remember that i have 8 buttons and every button play a sound (Drag are very important) – Bobj-C Nov 16 '10 at 14:05

You don't need to use a gesture recogniser just to detect when a button is pressed. A button knows when it's being pressed!

Try:

{
  // Blah...
  [myButton addTarget:self action:@selector(tapped:) forControlEvents:UIControlEventTouchUpInside];

  // Other stuff
}

-(void)tapped:(id)sender {
  NSLog (@"I'm in tapped!");
}
share|improve this answer

A gesture recognizer can only be attached to one view at a time. Handling single taps on buttons can just as easily be done using IBAction. You can create one IBAction and connect all three buttons to it.

- (IBAction)tapped:(id)sender {
UIButton *button = (UIButton *)sender;
NSLog(@"%@", button.titleLabel.text);
}

A similar question: UITapGestureRecognizer on a UIButton

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.