UILongPressGestureRecognizer多次执行
在响应事件方法里加个判断123UILongPressGestureRecognizer *longGes = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longGesAction:)];[self addGestureRecognizer:longGes];
12345- (void)longGesAction:(UIL
...