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 have just a regular UITableView, and I ran this code:

UITableView *tableView = [[UITableView alloc] init];
for(UIGestureRecognizer *gesture in tableView.gestureRecognizers)
 {
   NSString *className = NSStringFromClass([gesture class]);
   NSLog(@"ClassName:%@", className);
 }

One of the output lines is: ClassName:UIGobblerGestureRecognizer

Surprisingly Google has nothing on this. Anyone have any idea what it is?

share|improve this question
Haha, funny class name! Maybe it's for frenzied swipes? – Costique Apr 27 '12 at 17:39
3  
Well, since it's not public API, my suggestion would be "it doesn't matter, and you can ignore it" :) – Dave DeLong Apr 27 '12 at 17:40
Lol I mean if it was just a typical class name, I'd ignore it, but a Gobbler - I want to know what that does! – maq Apr 27 '12 at 17:42
8  
Gobbles up curious, unsuspecting, meddling iOS developers... – kevboh Apr 27 '12 at 18:02
1  
Clearly it's a class that recognizes the gobbler gesture. If you don't know what this gesture is, you must be missing out. – duskwuff Apr 27 '12 at 18:27
show 1 more comment

2 Answers

up vote 5 down vote accepted

Most likely this is an internal class that Apple uses. I've come across custom subclasses of UIGestureRecognizers that Apple created for some specific use. I'm sure they have needed to create custom gesture recognizers for various reasons, just as I have and not all of those classes are exposed for us to use.

share|improve this answer

it should definitely be part of private API ..

i will suggest to stay out of it

share|improve this answer

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.