Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an application where I have multiple controls on view but I want to enable them when user double tap the view

You can take the example of double click but in device I want to catch the event when their is double tap.

share|improve this question

2 Answers

up vote 19 down vote accepted

You need to add an UITapGestureRecognizer to the view which you want to be tapped.

Like this:

- (void)viewDidLoad {
    [super viewDidLoad];

    UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)];
    tapGesture.numberOfTapsRequired = 2;
    [self.view addGestureRecognizer:tapGesture];
    [tapGesture release];
}

- (void)handleTapGesture:(UITapGestureRecognizer *)sender {
    if (sender.state == UIGestureRecognizerStateRecognized) {
        // handling code
    }
}
share|improve this answer
2  
in case of the existence of multiple gesture recognizers, you can ensure the double tap one of "high priority" by using: [self.view.tapGestureRecognizer requireGestureRecognizerToFail:self.doubleTapGestureRecognizer]; – Jerry Tian Nov 8 '12 at 9:25

Add a UITapGestureRecognizer to the view, with numberOfTapsRequired = 2.

share|improve this answer
is UITapGestureRecognizer a control? Its not in controls Library – Azhar Sep 6 '11 at 7:16
It's a UIGestureRecognizer subclass. You need to write it in code. – Benjamin Mayo Sep 6 '11 at 7:18
I write this code with selector and UIAlert but it doesnot work - (void)viewDidLoad { UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)]; tapGesture.numberOfTapsRequired = 2; [tapGesture release]; } – Azhar Sep 6 '11 at 7:42
Did you add it to the view using addGestureRecognizer: ? – Plenilune Sep 6 '11 at 8:09

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.