ASControlNodeEvent Constants Reference

Declared in ASControlNode.h

ASControlNodeEvent

These events are identical to their UIControl counterparts.

Definition

typedef NS_OPTIONS(NSUInteger, ASControlNodeEvent ) {
   ASControlNodeEventTouchDown = 1 < < 0,
   ASControlNodeEventTouchDownRepeat = 1 < < 1,
   ASControlNodeEventTouchDragInside = 1 < < 2,
   ASControlNodeEventTouchDragOutside = 1 < < 3,
   ASControlNodeEventTouchUpInside = 1 < < 4,
   ASControlNodeEventTouchUpOutside = 1 < < 5,
   ASControlNodeEventTouchCancel = 1 < < 6,
   ASControlNodeEventPrimaryActionTriggered = 1 < < 13,
   ASControlNodeEventAllEvents = 0 xFFFFFFFF,
};

Constants

ASControlNodeEventTouchDown

A touch-down event in the control node.

Declared In ASControlNode.h.

ASControlNodeEventTouchDownRepeat

A repeated touch-down event in the control node; for this event the value of the UITouch tapCount method is greater than one.

Declared In ASControlNode.h.

ASControlNodeEventTouchDragInside

An event where a finger is dragged inside the bounds of the control node.

Declared In ASControlNode.h.

ASControlNodeEventTouchDragOutside

An event where a finger is dragged just outside the bounds of the control.

Declared In ASControlNode.h.

ASControlNodeEventTouchUpInside

A touch-up event in the control node where the finger is inside the bounds of the node.

Declared In ASControlNode.h.

ASControlNodeEventTouchUpOutside

A touch-up event in the control node where the finger is outside the bounds of the node.

Declared In ASControlNode.h.

ASControlNodeEventTouchCancel

A system event canceling the current touches for the control node.

Declared In ASControlNode.h.

ASControlNodeEventPrimaryActionTriggered

A system event when the Play/Pause button on the Apple TV remote is pressed.

Declared In ASControlNode.h.

ASControlNodeEventAllEvents

All events, including system events.

Declared In ASControlNode.h.

Declared In

ASControlNode.h