How can I get the UILongPressGestureRecognizer
on uilabel.when I implement the following code, it does not call the function. So please tell me what I did wrong?
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(LabelLongPressed:)]; longPress.minimumPressDuration = 0.5;
Vicky source share