我有一个按钮的水平收集视图。单击其中一个时,用户将被带到另一个视图控制器。通常,并非所有按钮都可见,所以我希望所选按钮位于集合视图的最左侧。

我试图用scrollToItem函数来做到这一点。问题在于,它每次都会一直将收集视图一直滚动到最右边。

相关代码:

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return labelArray.count
}

//frees up the collection view when the scroll is active
func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
    isScrolling = true
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath)

    //possible problem
    if isScrolling == false {
        collectionView.scrollToItem(at: indexPath, at: UICollectionViewScrollPosition.left, animated: false)
    }

    let myLabel = cell.viewWithTag(1) as! UILabel

    let myArray = labelArray[indexPath.row]

    myLabel.text = labelArray[indexPath.row]
    myLabel.textColor = UIColor.white

    if myArray == labelArray[1] {
        cell.backgroundColor = UIColor.black
    } else {
        cell.backgroundColor = UIColor(red: 56/255, green: 120/255, blue: 195/255, alpha: 1)
    }

    return cell
}


任何帮助将不胜感激。

最佳答案

您正在cellForItemAt方法中调用scrollToItem方法,对于集合视图中的每个可见单元格都会调用该方法。因此,您实质上是在尝试滚动到每个可见的单元格。尝试像这样在didSelectItemAt方法中调用scrollToItem方法:

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    collectionView.scrollToItem(at: indexPath, at: .left, animated: true)
}


仅当选定单元格并提供选定单元格的IndexPath时,才会调用didSelectItemAt。

08-05 04:37