I\'m new to gesture recognizers so maybe this question sounds silly: I\'m assigning tap gesture recognizers to a bunch of UIViews. In the method is it possible to find out w
you can use
- (void)highlightLetter:(UITapGestureRecognizer*)sender { UIView *view = sender.view; NSLog(@"%d", view.tag); }
view will be the Object in which the tap gesture was recognised