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_SINGLESwift
case CLICK_TYPE_SINGLE = 0 -
A click caused by pressing down but not releasing the screen.
Declaration
Objective-C
MSF_CLICK_TYPE_LONGSwift
case CLICK_TYPE_LONG = 1 -
A click caused by two fast consecutive taps on the screen.
Declaration
Objective-C
MSF_CLICK_TYPE_DOUBLESwift
case CLICK_TYPE_DOUBLE = 2 -
A click caused by two simultaneous taps on the screen.
Declaration
Objective-C
MSF_CLICK_TYPE_DUALSwift
case CLICK_TYPE_DUAL = 3