创建自定义VoiceOver转子以垂直导航UICollectionView

时间:2019-05-03 12:34:13

标签: ios swift uicollectionview accessibility voiceover

我有一个大的正方形网格(225个单元),构造为2d UICollectionView,我希望盲人用户能够轻松地导航网格。目前,他们需要水平滚动浏览每个方块才能下楼。理想情况下,我希望有一个自定义的VoiceOver转子,该转子可以左右滑动以进行导航。这可能吗?

如果没有,我会选择使用自定义转子,该转子通过向左/向右滑动来上下移动。我试图通过获取当前的indexPath并使用scrollToItem方法来更改它来创建一个。转子可以选择,但目前没有作用,所以到目前为止我做错了。

private func setupVerticalRotor() -> UIAccessibilityCustomRotor {

    let vertRotorOption = UIAccessibilityCustomRotor.init(name: "Move vertically") { (predicate) -> UIAccessibilityCustomRotorItemResult? in

        let forward = predicate.searchDirection == UIAccessibilityCustomRotor.Direction.next
        let visibleCells = self.collectionView.visibleCells
        if let firstCell = visibleCells.first {
            if let indexPath = self.collectionView.indexPath(for: firstCell as UICollectionViewCell) {
                if forward {
                    let newIndexPath = IndexPath(row: indexPath.row, section: indexPath.section + 1)
                    self.collectionView.scrollToItem(at: newIndexPath, at: UICollectionView.ScrollPosition.centeredVertically, animated: false)

                }else {
                    let newIndexPath = IndexPath(row: indexPath.row, section: indexPath.section - 1)
                    self.collectionView.scrollToItem(at: newIndexPath, at: UICollectionView.ScrollPosition.centeredVertically, animated: false)
                }
            }
        }
        return UIAccessibilityCustomRotorItemResult.init(targetElement: self.collectionView , targetRange: nil)
    }
    return vertRotorOption
}

1 个答案:

答案 0 :(得分:0)

  

理想情况下,我希望有一个自定义的VoiceOver转子,该转子可以左右滑动以进行导航。这可能吗?

本地转子已经具有垂直导航的项目。 enter image description here

对于您的代码,我建议看一下this custom rotor example +检查您的集合视图单元格是否使用Xcode中的断点进行更新。