gpt4 book ai didi

ios - 我的 UICollectionView 的 IndexPath 错误

转载 作者:行者123 更新时间:2023-11-30 12:57:28 25 4
gpt4 key购买 nike

我的 UICollectionView 有问题。

我用 2 个列表创建了 collectionView。这两个列表均包含一个标题。例如,当我单击第一个列表上的第一个单元格时,我的代码会向我发送 indexPath.item = 0。一切正常。但是当我单击第二个列表上的第一个索引时,我的索引也返回 0 ,但我更喜欢它在第一个列表之后。

例如,如果我的第一个列表中有 10 个项目(indexPath 0 -> 9),我希望第二个列表的第一个对象等于到 10 并且不是从头开始!预先感谢您。

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if let cell = sender as? UICollectionViewCell,
indexPath = collectionView?.indexPathForCell(cell),
managePageViewController = segue.destinationViewController as? ManagePageViewController {
managePageViewController.videoList = dataSource.pictureOfVideo
managePageViewController.currentIndex = indexPath.item
}
}

enter image description here

最佳答案

单元格的

IndexPath 为您提供有关它在 collectionView 中的位置的信息。单元格索引可以通过 NSIndexPath 中的 sectionitem 属性来标识。使用这些属性的组合来识别确切的位置。

关于ios - 我的 UICollectionView 的 IndexPath 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40265639/

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