gpt4 book ai didi

iphone - 有没有办法找到 UICollectionView 部分的索引?

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

有没有办法找到 UICollectionView 部分的索引?

我的 CollectionView 由主数组中包含的数组填充,我需要为该部分选择合适的数组。

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

let collectionCell: ChecklistCollectionViewCell = collectionView.dequeueReusableCellWithReuseIdentifier("collectionCell", forIndexPath: indexPath) as! ChecklistCollectionViewCell

let section = //I need the index of the current section here!

let sectionArray = allCards[section]

collectionCell.imageCell.image = UIImage(named: sectionArray[indexPath.row])

return collectionCell

}

与此处的操作方式类似:

func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {

let sectionArray = allCards[section]
return sectionArray.count

}

最佳答案

let section = allCards[indexPath.section]

关于iphone - 有没有办法找到 UICollectionView 部分的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32448668/

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