[tvOS] Added a default touch down animation for ASControlNode

This commit is contained in:
Aaron Schubert
2016-02-23 12:18:33 +00:00
parent 4ad6d91a10
commit d9cde1f08c
2 changed files with 99 additions and 64 deletions

View File

@@ -30,6 +30,9 @@ typedef NS_OPTIONS(NSUInteger, ASControlNodeEvent)
ASControlNodeEventTouchUpOutside = 1 << 5,
/** A system event canceling the current touches for the control node. */
ASControlNodeEventTouchCancel = 1 << 6,
/** A system event when the Play/Pause button on the Apple TV remote is pressed. */
ASControlNodeEventPrimaryActionTriggered = 1 << 13,
/** All events, including system events. */
ASControlNodeEventAllEvents = 0xFFFFFFFF
};