How can I send a UILongPressGesture message to an object?
I know how to send touches, but not gestures. For example, if I wanted to send a touch I could use:
[button sendActionsForControlEvents: UIControlEventTouchUpInside];
and the button would receive a “touch up inside”. I need to do the same thing with a long press gesture.
Think automated UI testing. Calling a selector associated with the gesture wouldn’t meaningfully test anything.
Import
<UIKit/UIGestureRecognizerSubclass.h>and manually set thestateproperty as appropriate to the sequence of states you need to simulate. This will cause the added target/action pairs to be called. After each time manually setting the state, you must let the run loop run in order for the messages to be dispatched.For the
UILongPressGestureRecognizer, to get the correct sequence of states as is found in an actual, ‘touch, hold, drag, release’ sequence of gestures, I wrote the following code in aUIViewControllersubclass insideviewDidLoad.:I imagine this would be risky in production code (you may wish afterwards to call
resetbut I found no difference between doing so or not in my testing), but if your use case is automated testing to verify that the targets and actions have been set correctly this may meet your needs.