UIButtons and other descendants of UIControl have the methods allTargets and actionsForTarget.
The method allTargets lets you find out which objects are targets for this control.
Then, actionsForTarget gives you an array of the actions that will be sent to that target.
I don't see any such thing in the UIGestureRecognizer class, and UIGestureRecognizers are not descendants of UIControl.
Is there a way to find out what target/actions are registered with the gesture recognizer?