我正在使用以下代码在UITableViewCell
中实施长按。一切正常,但是当长按结束时,我必须在单元格上单击两次才能选择它。
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)];
longPress.minimumPressDuration = 0.5;
longPress.delegate = self;
[cell addGestureRecognizer:longPress];
有人知道这种行为背后的原因吗? 感谢。