1

I've added a UITapGestureRecognizer to my UIView:

[[self view] addGestureRecognizer:[[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)] autorelease]];

It seems to work fine, except that it doesn't fire until the finger(s) is/are released from the screen, i.e. when the tap recognizer's state is UIGestureRecognizerStateEnded. I need to know in real time when the finger first touches the screen as well. Any ideas?

ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
frankw
  • 41
  • 4
  • Check out this question: http://stackoverflow.com/questions/15628133/uitapgesturerecognizer-make-it-work-on-touch-down-not-touch-up – enjayem May 09 '14 at 21:53
  • Oh yes, answered in http://stackoverflow.com/questions/15628133/uitapgesturerecognizer-make-it-work-on-touch-down-not-touch-up. Glad to know it's possible! – frankw May 10 '14 at 11:20

0 Answers0