Conflicts and solutions between multiple gestures in IOS
UIImageView does not support interaction by default, that is, userInteractionEnabled=NO. Therefore, to receive touch events (gesture recognition), userInteractionEnabled must be set (in iOS, userInteractionEnabled of UILabel and UIImageView are both NO by default, and UIButton, UITextField, UIScrollView, UITableView, etc. are all YES by default).
In iOS, if the recognition part of one gesture A is a sub-part of another gesture B, by default, A will first recognize it, and B will not be recognized. To resolve this conflict, you can use - (void)requireGestureRecognizerToFail:(UIGestureRecognizer *)otherGestureRecognizer;Methods to complete. This method can specify that the execution of a certain gesture is only recognized if another gesture fails.
//Solve the conflict between drag gestures and swipe gestures when sliding on the picture[panGesture requireGestureRecognizerToFail:swipeGestureToRight]; [panGesture requireGestureRecognizerToFail:swipeGestureToLeft]; //Solve conflicts between drag and long press gestures[longPressGesture requireGestureRecognizerToFail:panGesture];
Through the following method, multiple gesture operations in the same view can be realized.
- Follow UIGestureRecognizerDelegate,
- Rewrite the corresponding method,
- Designate gesture agent
- Methods of using proxy
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
(This proxy method returns NO by default, which will block the continued downward recognition gesture. If you return YES, you can continue to propagate downward recognition.)
Thank you for reading, I hope it can help you. Thank you for your support for this site!