GestureManager

public final class GestureManager : GestureHandlerDelegate

Undocumented

  • Configuration options for the built-in gestures

    Declaration

    Swift

    public var options: GestureOptions { get set }
  • The gesture recognizer for the pan gesture

    Declaration

    Swift

    public var panGestureRecognizer: UIGestureRecognizer { get }
  • The gesture recognizer for the “pinch to zoom” gesture

    Declaration

    Swift

    public var pinchGestureRecognizer: UIGestureRecognizer { get }
  • The gesture recognizer for the pitch gesture

    Declaration

    Swift

    public var pitchGestureRecognizer: UIGestureRecognizer { get }
  • The gesture recognizer for the “double tap to zoom in” gesture

    Declaration

    Swift

    public var doubleTapToZoomInGestureRecognizer: UIGestureRecognizer { get }
  • The gesture recognizer for the “double tap to zoom out” gesture

    Declaration

    Swift

    public var doubleTouchToZoomOutGestureRecognizer: UIGestureRecognizer { get }
  • The gesture recognizer for the quickZoom gesture

    Declaration

    Swift

    public var quickZoomGestureRecognizer: UIGestureRecognizer { get }
  • Set this delegate to be called back if a gesture begins

    Declaration

    Swift

    public weak var delegate: GestureManagerDelegate?