0

how to get in the consol using NSLog, the list of gestureRecogniser on UITextView?

something like that?

NSLog([UIGestureRecognizer description]);
benhi
  • 574
  • 1
  • 6
  • 24

1 Answers1

5

No, something like this:

for (UIGestureRecognizer *g in textView.gestureRecognizers) {
    NSLog(@"g %@", g);
}
beryllium
  • 29,669
  • 15
  • 106
  • 125
  • I need to prevent event: twoFingerSingleTap on UITextView. there is possible? If yes you have an idea? – benhi Feb 21 '12 at 09:55
  • @benhi: search-engine here works by searching question titles so it would be best (for others searching for the same thing) if you put this in another question. And don't forget to accept beryllium's answer. – Rok Jarc Feb 21 '12 at 09:58
  • @benhi, Yes, it looks like another question. But i hope it help you - http://stackoverflow.com/q/1426731/194544 – beryllium Feb 21 '12 at 10:01
  • click the checkmark in the upper left corner of the answer field – Rok Jarc Feb 21 '12 at 10:02