我的tvOS应用程序中有一个UICollectionView
,其中填充了多个UICollectionViewCell
,而其中又包含一个UICollectionView
,其中包含自己的项。
容器UICollectionView
垂直滚动,而内部UICollectionView
水平滚动。顶层UICollectionViewCell
的焦点已禁用,并且焦点转移到内部UICollectionView
的项目中。
看起来像这样:
-------------------
| |
| --------------- |
| | xxxx xxxx xx| |
| | xxxx xxxx xx| |
| --------------- |
| |
| --------------- |
| | xxxx xxxx xx| |
| | xxxx xxxx xx| |
| --------------- |
| |
-------------------
我要达到的目的是,当焦点集中在UICollectionView
的垂直中心线下方的行上时,该行应在UICollectionView
的垂直中心居中。
Before centering vertically
-------------------
| 1xxx xxxx xxxx x|
| 1xxx xxxx xxxx x|
| |
| 2xxx xxxx xxxx x|
| 2xxx xxxx xxxx x|
| |
| 3xxx xxxx xxxx x| <-
| 3xxx xxxx xxxx x| <-
| |
| 4xxx xxxx xxxx x|
-------------------
=
After centering vertically
-------------------
| |
| 2xxx xxxx xxxx x|
| 2xxx xxxx xxxx x|
| |
| 3xxx xxxx xxxx x|
| 3xxx xxxx xxxx x|
| |
| 4xxx xxxx xxxx x|
| 4xxx xxxx xxxx x|
| |
-------------------
有人对我如何实现这一目标发表评论/建议吗?
编辑:基于另一个SO post,我尝试实现以下UICollectionViewDelegate
函数,但它似乎对我不起作用:
func collectionView(_ collectionView: UICollectionView, didUpdateFocusIn context: UICollectionViewFocusUpdateContext, with coordinator: UIFocusAnimationCoordinator) {
if let indexPath = context.nextFocusedIndexPath,
let _ = collectionView.cellForItem(at: indexPath) {
collectionView.contentInset.top = max((collectionView.frame.height - collectionView.contentSize.height) / 2, 0)
}
}
编辑:从下面的建议答案中进行了反复试验后,我将其与以下代码一起使用:
func collectionView(_ collectionView: UICollectionView, didUpdateFocusIn context: UICollectionViewFocusUpdateContext, with coordinator: UIFocusAnimationCoordinator) {
if let indexPath = context.nextFocusedIndexPath {
collectionView.isScrollEnabled = false
coordinator.addCoordinatedAnimations({
self.collectionView.scrollToItem(at: indexPath, at: .centeredVertically, animated: true)
}, completion: nil)
}
}
答案 0 :(得分:1)
您可以像这样使用scrollToItemAtIndexPath方法:
func collectionView(_ collectionView: UICollectionView, didUpdateFocusIn context: UICollectionViewFocusUpdateContext, with coordinator: UIFocusAnimationCoordinator) {
if let indexPath = context.nextFocusedIndexPath,
let _ = collectionView.cellForItem(at: indexPath) {
self.collectionView.scrollToItem(at: indexPath, at:
.centeredVertically, animated: true)
}
}
已编辑
使用可访问性属性或其他方式,您将不得不从单元格中提取indexPath,然后像这样滚动到该indexPath:
override func didUpdateFocus(in context: UIFocusUpdateContext, with coordinator: UIFocusAnimationCoordinator) {
if let nextCell = context.nextFocusedView as? ScrumCollectionViewCell {
let index = Int(nextCell.accessibilityHint!)!
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // 2
self.collectionView.scrollToItem(at: IndexPath(item: index, section: 0), at: .centeredVertically, animated: true)
}
}
}