UILongPressGestureRecognizer多次执行 发表于 2018-07-11 在响应事件方法里加个判断123UILongPressGestureRecognizer *longGes = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longGesAction:)];[self addGestureRecognizer:longGes]; 12345- (void)longGesAction:(UILongPressGestureRecognizer *)longGes { if (longGes.state == UIGestureRecognizerStateBegan) { self.selectCellBlcok(self.indexPath); }}