我想在我的按钮处于焦点时执行某些操作,而不是在tvOS
中手动点击它。
我有四个UIButtons水平排列,当用户只关注4个按钮中的一个时,我将会显示一个包含一些信息的UIView。
如何在不需要点击按钮的情况下执行操作?
答案 0 :(得分:3)
当其中一个按钮成为焦点视图时,您可以执行操作。
您可以为每个按钮分配一个标记,并使用聚焦按钮的标记来确定要采取的操作。为了便于阅读,您可以为每个标记定义enum
值。
enum FocusedButtonTag: Int {
case First // Substitute with names that correspond to button's title/action
case Second
case Third
case Fourth
}
override func didUpdateFocusInContext(context: UIFocusUpdateContext, withAnimationCoordinator coordinator: UIFocusAnimationCoordinator) {
super.didUpdateFocusInContext(context, withAnimationCoordinator: coordinator)
guard let button = UIScreen.mainScreen().focusedView as? UIButton else {
return
}
// Update your UIView with the desired information based on the focused button
switch button.tag {
case FocusedButtonTag.First.rawValue:
... // first button's action
case FocusedButtonTag.Second.rawValue:
... // second button's action
case FocusedButtonTag.Third.rawValue:
... // third button's action
case FocusedButtonTag.Fourth.rawValue:
... // fourth button's action
default:
break
}
}