mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
[appledoc] Fix appledoc warnings. (#553)
This commit is contained in:
@@ -15,14 +15,21 @@
|
||||
*/
|
||||
typedef NS_OPTIONS(NSUInteger, ASControlNodeEvent)
|
||||
{
|
||||
/** A touch-down event in the control node. */
|
||||
ASControlNodeEventTouchDown = 1 << 0,
|
||||
/** A repeated touch-down event in the control node; for this event the value of the UITouch tapCount method is greater than one. */
|
||||
ASControlNodeEventTouchDownRepeat = 1 << 1,
|
||||
/** An event where a finger is dragged inside the bounds of the control node. */
|
||||
ASControlNodeEventTouchDragInside = 1 << 2,
|
||||
/** An event where a finger is dragged just outside the bounds of the control. */
|
||||
ASControlNodeEventTouchDragOutside = 1 << 3,
|
||||
/** A touch-up event in the control node where the finger is inside the bounds of the node. */
|
||||
ASControlNodeEventTouchUpInside = 1 << 4,
|
||||
/** A touch-up event in the control node where the finger is outside the bounds of the node. */
|
||||
ASControlNodeEventTouchUpOutside = 1 << 5,
|
||||
/** A system event canceling the current touches for the control node. */
|
||||
ASControlNodeEventTouchCancel = 1 << 6,
|
||||
|
||||
/** All events, including system events. */
|
||||
ASControlNodeEventAllEvents = 0xFFFFFFFF
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user