我是 tvOS 的新手。我想要一个标准按钮,一旦被按下,它将焦点移动到另一个标准按钮,我该怎么做(如果可能的话)?
问问题
6435 次
2 回答
12
首先使用自定义属性覆盖preferredFocusedView
viewController 中的 :
var myPreferredFocusedView:UIView?
override var preferredFocusedView: UIView? {
return myPreferredFocusedView:UIView
}
然后,在您的按钮回调中,将 设置myPreferredFocusedView
为您应该获得焦点的下一个首选按钮。之后,直接请求焦点更新:
func buttonCallback(){
myPreferredFocusedView = button2 // button2 is an example
/*
Trigger the focus system to re-query the view hierarchy for preferred
focused views.
*/
setNeedsFocusUpdate()
updateFocusIfNeeded()
}
这应该将焦点系统更新到您的另一个按钮。
于 2015-10-13T20:03:16.477 回答
5
另一种选择是在 buttonA (例如)具有焦点时执行以下操作:
buttonB.setNeedsFocusUpdate()
viewController.setNeedsFocusUpdate()
不过,这仅在它们在视图层次结构中处于同一级别时才有效。如果不是,那么您可能需要将调用链接到setNeedsFocusUpdate
整个层次结构或其他东西......
于 2018-02-27T09:51:30.393 回答