I have a UIPanGestureRecognizer
I am using to track an object (UIImageView
) below a user\'s finger. I only care about motion on the X axis, and if
How about this from the apple docs:
@property(nonatomic, getter=isEnabled) BOOL enabled
Disables a gesture recognizers so it does not receive touches. The default value is YES. If you change this property to NO while a gesture recognizer is currently recognizing a gesture, the gesture recognizer transitions to a cancelled state.