我有一个集合视图,但是没有出现在屏幕上的单元格我无法访问,1…5好,索引部分第6、7行的单元格必须滚动到bee seen

func Action0(sender: UIButton!) {
    for i in 0...7 {
        if i != 0{
        var indexPath = NSIndexPath(forRow: i, inSection: 0)
        var cell = collectionView!.cellForItemAtIndexPath(indexPath)
        cell!.backgroundColor = UIColor.whiteColor()
        }else{
        var indexPath = NSIndexPath(forRow: 0, inSection: 0)
        var cell = collectionView!.cellForItemAtIndexPath(indexPath)
        cell!.backgroundColor = UIColor.blueColor()
        }
    }
}

如何访问那些尚不可见的单元格?
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCellWithReuseIdentifier("CollectionViewCell", forIndexPath: indexPath) as! CollectionViewCell
    cell.backgroundColor = UIColor.blackColor()
    cell.textLabel.text = "\(indexPath.section):\(indexPath.row)"
    cell.buttonView.setBackgroundImage(UIImage(named: "Good"), forState: UIControlState.Normal)
    cell.buttonView.addTarget(self, action: Selector("Action\(indexPath.row):"), forControlEvents: UIControlEvents.TouchUpInside)
    return cell
}

最佳答案

不可见的细胞不存在。表视图和集合视图只创建当前可见的单元格。当您滚动时,超出视图的单元格将被回收并重新用于进入视图的新索引路径。
您需要考虑数据模型,它保存每个索引路径的数据,以及显示某些数据子集视图的单元格。

10-04 11:00