You can use UITapGestureRecognizer to perform actions on label fields.
Set the number of taps and touches on the UITapGestureRecognizer.
[oneFingerTwoTaps setNumberOfTapsRequired:1]; [oneFingerTwoTaps setNumberOfTouchesRequired:1];
establish user interaction with the label field, for example
labelField.userInteractionEnabled = YES;
then add the target method on top
UITapGestureRecognizer object.
source share