I add a tap gesture on my label but I couldn't retrieve the tapped label in the selector function. I mean, for example, my function is like this:
-(void)changeLabel:(UIGestureRecognizer *)sender{}
If this gesture is added on a imageview, I can get the imageview by using sender.view.
But since it's a uilabel I don't know to get it and then change text content.
Hope my question is clear...