I spotted one behaviour in Apple's default AVPlayerViewController on tvOS. If you call up timeline, where you can rewind or fast forward the video, and then if you put and leave your finger on the right side of touchpad don SiriRemote the "10" label appears next to current playback time
If you remove your finger without pressing on the remote, the "10" label disappears.
Same for touching left side of the remote, just the "10" label appears to the left of current playback time.
The question is, how can I receive callback for this event? The event of user putting the finger on the side of remote.
UPD
UITapGestureRecognizer with allowedPressTypes=UIPressTypeRightArrow will generate event after user releases the finger from touch surface. I'm interested in event that will be generated as soon as user touches edge of the surface (and probably leaves the finger resting)