I'm implementing both UILongPressGestureRecognizer and UIPanGestureRecognizer

The UIPanGestureRecognizer should start on a drag and the UILongPressGestureRecognizer should start on a long press

Unfortunately when UIPanGestureRecognizer is called with a drag also the UILongPressGestureRecognizer is being called.

Thanks!

有帮助吗?

解决方案

This UIGestureRecognizerDelegate method does exactly what I looked for:

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer 
shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer

See: Combining a UILongPressGestureRecognizer with a UIPanGestureRecognizer

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top