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

I'm trying to make an iPhone app that is controlled by touch. I also want a powerup to be activated when the user double-taps. Here's what I have so far:

UITapGestureRecognizer *powerRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(usePower)];
powerRecognizer.delaysTouchesEnded = NO;
powerRecognizer.numberOfTapsRequired = 2;
powerRecognizer.numberOfTouchesRequired = 1;
[self.view addGestureRecognizer:powerRecognizer];
[powerRecognizer release];

But the problem is, when I double-tap, my touchesEnded:withEvent: method only fires once, but my touchesBegan:withEvent: method fires twice. Since touchesBegan: sets a timer and touchesEnded: invalidates it, then when touchesEnded: only fires once, the timer is still running. How can I fix this?

share|improve this question
Why are you using touches began/ended when you have a gesture recognizer set-up for the method usePower? – thyrgle Oct 3 '10 at 21:25
I think Jake wants to be able to do more than double tap. Drag the view around the screen using a touch, for example. – Kris Markel Oct 3 '10 at 21:38

2 Answers

up vote 1 down vote accepted

Here is my solution fordetecting double-taps:

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{   

UITouch *touch = [touches anyObject];

if([touch tapCount] == 2) {
// do sth   
}

}
share|improve this answer
Thanks! Worked perfectly. I didn't realize that you could detect double-taps without a gesture recognizer. Silly me! – Jake King Oct 5 '10 at 3:14

Adding a gesture recognizer to a view changes the behavior of several touch handling methods, including touchesEnded:WithEvent:.

From the above link:

After observation, the delivery of touch objects to the attached view, or their disposition otherwise, is affected by the cancelsTouchesInView, delaysTouchesBegan, and delaysTouchesEnded properties.

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.