0
我正在製作一個簡單的應用程序,它將鼠標懸停在按鈕上時向用戶顯示一些信息。我已經找遍了所有的答案,但似乎沒有人想過這件事。我知道有可能檢測到按鈕亮點,因爲我在我的Apple TV上下載的某些應用程序中看到了它。這基本上就是我的目標:如何在Swift中檢測Apple TV上的按鈕高亮
@IBAction func firstButton(_ sender: Any) {
//This function would be called when the first button is highlighted/hovered over
label.text = "Hi there"
}
@IBAction func secondButton(_ sender: Any) {
//This function would be called when the second button is highlighted/hovered over
label.text = "How are you?"
}
我知道,只是創建一個IBAction func
不會做的伎倆,但我只是用這個作爲什麼我想要做的一個例子。
那麼有沒有辦法檢測按鈕突出顯示/按鈕懸停和如何?
在此先感謝。任何幫助表示讚賞。