How can I detect a double tap on a certain cell in UITableView?
UITableView
i.e. I want to perform one action if the user made a single touch and a
Override in your UITableView class this method
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { if(((UITouch *)[touches anyObject]).tapCount == 2) { NSLog(@"DOUBLE TOUCH"); } [super touchesEnded:touches withEvent:event]; }