문제

I'm using a UIGestureRecognizer to recognize a single tap, a double tap and a longpress.

What I would like to do is also recognize a longpress, then swipe to either left or right.

Would this be possible given that I'm already consuming a longpress? I'm confused on this one and would appreciate pointers on how to do.

Thanks

도움이 되었습니까?

해결책

Just tried this out myself and it seems as if the UILongPressGestureRecognizer will transition to its end state as soon as the UISwipeGestureRecognizer begins. Just make sure shouldRecognizeSimultaneouslyWithGestureRecognizer: returns YES for this gesture combination.

다른 팁

You'd need to use two gesture recognisers and make sure you track the state of the long press one when you receive a callback to say it's ended, and then do something based on the swipe/pan gesture following it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top