MSFClickType

Objective-C

enum MSFClickType : NSInteger {}

Swift

enum MSFClickType : Int, @unchecked Sendable

Possible click types.

  • A click caused by pressing down and then releasing the screen.

    Declaration

    Objective-C

    MSF_CLICK_TYPE_SINGLE

    Swift

    case CLICK_TYPE_SINGLE = 0
  • A click caused by pressing down but not releasing the screen.

    Declaration

    Objective-C

    MSF_CLICK_TYPE_LONG

    Swift

    case CLICK_TYPE_LONG = 1
  • A click caused by two fast consecutive taps on the screen.

    Declaration

    Objective-C

    MSF_CLICK_TYPE_DOUBLE

    Swift

    case CLICK_TYPE_DOUBLE = 2
  • A click caused by two simultaneous taps on the screen.

    Declaration

    Objective-C

    MSF_CLICK_TYPE_DUAL

    Swift

    case CLICK_TYPE_DUAL = 3