如何检测 Apple TV 遥控器上触摸板上的点击?

How to detect click-press on the touchpad on Apple TV's remote?

如何在 Siri Remote 的触摸板上检测到 "click press",而不仅仅是点击?

编辑: 我的主要问题是我的视图有一个接收事件的 UIButton。

通过阅读 UIPressesEvent 的。 Detecting Gestures and Button Presses

override func pressesEnded(presses: Set<UIPress>, withEvent event: UIPressesEvent?) {
    for press in presses {
        if (press.type == .Select) {
           // Select is pressed
        }  else {
            super.pressesEnded(presses, withEvent: event)
        }
    }
}

我的主要问题是我的视图有一个接收事件的 UIButton。 在情节提要中禁用该按钮后,将调用 pressesBegan / pressesEnded。