gpt4 book ai didi

ios - 默认情况下,如何选择 UICollectionView 的特定索引路径?

转载 作者:行者123 更新时间:2023-11-28 06:24:15 25 4
gpt4 key购买 nike

我想默认突出显示 UICollectionView 的特定单元格。
但是我不能那样做。代码如下。

UIView(在init方法中):

    let selectedIndexPath = IndexPath(item: 0, section: 0)
collectionView.selectItem(at: selectedIndexPath, animated: false, scrollPosition: [])

UICollectionViewCell:

override var isSelected: Bool {
didSet {
imageView.tintColor = isSelected ? UIColor.white : UIColor.red
}
}

如何默认选择 UICollectionView 的特定索引路径?如果您需要任何其他信息来解决它,请告诉我。谢谢。

最佳答案

这只选择第一个单元格

func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
//add here
let selectedIndexPath = IndexPath(item: 0, section: 0)
collectionView.selectItem(at: selectedIndexPath, animated: false, scrollPosition: [])
}

关于ios - 默认情况下,如何选择 UICollectionView 的特定索引路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42465638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com