我正在研究Apple TV应用程序。在我的应用程序中,我创建了一个具有集合视图的屏幕。在这种情况下,我能够将焦点移动到集合视图单元格,但无法将焦点移动到集合视图单元格中的按钮,那么任何人都可以帮我解决这个问题吗?
如果有人知道这个答案,请给我一个答案。答案 0 :(得分:3)
我可以通过在collectionViewCell子类中添加以下方法来解决这个问题。
override var preferredFocusEnvironments: [UIFocusEnvironment]{
// Condition
}
override func shouldUpdateFocus(in context: UIFocusUpdateContext) -> Bool {
// Condition
}
override func didUpdateFocus(in context: UIFocusUpdateContext, with coordinator: UIFocusAnimationCoordinator) {
// Condition
}
您可以在此链接中查看更多内容: enter link description here
答案 1 :(得分:1)
我认为此页面将指导您实现您想要的目标。 https://developer.apple.com/library/content/documentation/General/Conceptual/AppleTV_PG/WorkingwiththeAppleTVRemote.html#//apple_ref/doc/uid/TP40015241-CH5-SW4
它很好地解释了焦点引擎如何决定哪个对象应该获得下一个焦点。以下是above link.
一步一步的精彩解释以下是一个显示如何确定焦点的示例:
您必须覆盖UIView或UIViewController的preferredFoucsedView属性。
UnsafeRawPointer
感谢Slayter's回答