GestureType

Objective-C

enum GestureType : NSInteger {}

Swift

enum GestureType : Int, @unchecked Sendable

제스쳐 타입

  • 더블탭 줌인

    Declaration

    Objective-C

    GestureTypeDoubleTapZoomIn = 1

    Swift

    case doubleTapZoomIn = 1
  • 투핑거 싱글탭 줌 아웃

    Declaration

    Objective-C

    GestureTypeTwoFingerTapZoomOut = 2

    Swift

    case twoFingerTapZoomOut = 2
  • 패닝

    Declaration

    Objective-C

    GestureTypePan = 5

    Swift

    case pan = 5
  • 회전

    Declaration

    Objective-C

    GestureTypeRotate

    Swift

    case rotate = 6
  • Declaration

    Objective-C

    GestureTypeZoom

    Swift

    case zoom = 7
  • 틸트

    Declaration

    Objective-C

    GestureTypeTilt

    Swift

    case tilt = 8
  • 롱탭 후 드래그

    Declaration

    Objective-C

    GestureTypeLongTapAndDrag

    Swift

    case longTapAndDrag = 9
  • 동시 회전 및 줌

    Declaration

    Objective-C

    GestureTypeRotateZoom

    Swift

    case rotateZoom = 10
  • 한손가락 줌

    Declaration

    Objective-C

    GestureTypeOneFingerZoom

    Swift

    case oneFingerZoom = 11
  • Unknown

    Declaration

    Objective-C

    GestureTypeUnknown

    Swift

    case unknown = 12