i have uitableview within uitableview (in its cell, like pulse app), and for some reason that i dont think its relevant, i need to know when user try to go left when he is in the first cell of the inner uitableview.
i tryed adding following code to outer/inner table, outer, inner cell, imageview in inner table cell, and i cant get it to work.. method – (void)handleSwipeFrom:(UISwipeGestureRecognizer *)recognizer {} just doesnt get invoked…
UISwipeGestureRecognizer *gesture = [[UISwipeGestureRecognizer alloc]
initWithTarget:self
action:@selector(handleSwipeFrom:)];
[gesture setDirection:UISwipeGestureRecognizerDirectionLeft];
[tableViewCell addGestureRecognizer:gesture];
[gesture release];
any ideas?
LOL my tableview was rotated and swipe left was actually swipe down.. it all works now