I am using a NIB file to layout a custom table view cell. This cell has a label with outlet called lblName. Adding a UITapGestureRecognizer to this label never fires the assoc
You can add next in your cell's -awakeFromNib method
UITapGestureRecognizer* gesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGestureRecognizerAction:)]; [self.yourLabel setUserInteractionEnabled:YES]; [self.yourLabel addGestureRecognizer:gesture];