how do i count double tap in simulator?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 5 down vote accepted
- (void) touchesBegan:(NSSet *) touches withEvent:(UIEvent *) event
{
    UITouch *touch = [touches anyObject];
    if (touch.tapCount == 2)
    {
        // do your stuff here
    }
}
link|improve this answer
feedback

Implement one of the touch functions defined in UIResponder (touchesBegan, touchedEnded, etc...). When you get the touches array, you can get a UITouch's tap count using code like this:

UITouch * t = [touches anyObject];
NSLog(@"%d", [t tapCount]);
link|improve this answer
it always show one in simulator – Rahul Vyas Jun 27 '09 at 5:24
Hey! Sorry if this is stupid - but you quickly clicked twice in the same place on the screen, right? It should work in both the simulator and the device. – Ben Gotow Jun 27 '09 at 16:17
feedback

Your Answer

 
or
required, but never shown

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