设置UICollectionViewLayer时,不会调用cellForItemAt

时间:2017-04-14 21:15:15

标签: swift uicollectionview uicollectionviewcell uicollectionviewlayout

我想为我的UICollectionView设置UICollectionViewLayout,但是当设置图层时,函数cellForItemAt不会被调用。我不明白为什么。 我的UICollectionView位于XIB中,此代码用于测试UICollectionViewLayout:

required init?(coder aDecoder: NSCoder)
{
    super.init(coder: aDecoder)
    xibSetup()

    self.collectionView.register(UINib(nibName: "StepCell", bundle: nil), forCellWithReuseIdentifier: stepCellIdentifier)
    self.collectionView.delegate = self
    self.collectionView.dataSource = self
}

func numberOfSections(in collectionView: UICollectionView) -> Int {
    return 3
}

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

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    if let lCell = collectionView.dequeueReusableCell(withReuseIdentifier: stepCellIdentifier, for: indexPath) as? StepCell {
        lCell.text.text = indexPath.row.description
        return lCell
    }
    return UICollectionViewCell()
}

我在另一个xib中有一个自定义的UICollectionViewCell,这是我的UICollectionViewLayout类:

class DetailGroupCollectionviewLayout: UICollectionViewLayout {
    let CELL_HEIGHT = 30.0
    let CELL_WIDTH = 100.0

    var cellAttrsDictionary = Dictionary<IndexPath,UICollectionViewLayoutAttributes>()
    var contentSize = CGSize.zero

    override var collectionViewContentSize: CGSize {
        return self.contentSize
    }

    override func prepare() {
        if let lCollectionView = self.collectionView {
            if lCollectionView.numberOfSections > 0 {
                for section in 0...lCollectionView.numberOfSections - 1 {
                    if lCollectionView.numberOfItems(inSection: section) > 0 {
                        for item in 0...lCollectionView.numberOfItems(inSection: section) - 1 {
                            let cellIndex = IndexPath(item: item, section: section)
                            let xPos = Double(item) * CELL_WIDTH
                            let yPos = Double(section) * CELL_HEIGHT

                            let cellAttributes = UICollectionViewLayoutAttributes(forCellWith: cellIndex)
                            cellAttributes.frame = CGRect(x: xPos, y: yPos, width: CELL_WIDTH, height: CELL_HEIGHT)
                            cellAttributes.zIndex = 1

                            cellAttrsDictionary[cellIndex] = cellAttributes
                        }
                    }
                }
            }
        }
    }
}

我试图在故事板中提供有关UICollectionView的所有内容,因为我认为xib是“bug”,但这没有解决任何问题。

有一件事我没有正确或特殊吗?我输了。

我使用Swift 3.1使用Xcode 8.3,我的应用程序在iOS 10上。

4 个答案:

答案 0 :(得分:0)

你确定你的ReuseIdentifier是正确的吗?如果它进入内部,你试过吗? (带有打印语句或断点)?

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    if let lCell = collectionView.dequeueReusableCell(withReuseIdentifier: stepCellIdentifier, for: indexPath) as? StepCell {
        lCell.text.text = indexPath.row.description
        return lCell
    }
    return UICollectionViewCell()
}

不确定它可能是什么,如果您可以分享您的项目或其中的一部分,我很乐意尝试与您一起解决。另外,请确保您符合UICollectionViewDataSourceUICollectionViewDelegate

答案 1 :(得分:0)

您是否将委托归属于viewController?这可能是一种可能性。 (如果还没有,“numberOsSections”也不会被调用。

答案 2 :(得分:0)

ReuseIdentifier是正确的。问题是,当我添加UICollectionViewLayout时,cellForItemAt不会调用,当没有设置时,UICollectionView运行完美。

Without UICollectionViewLayout

With UICollectionViewLayout

我忘了告诉你的事情,无论何时设置UICollectionViewLayout都没关系,我的xibController只有在设置了UICollectionViewLayout时才进入“numberOfItemsInSection”和“numberOfSections”,控制器不会进入cellForItemAt

答案 3 :(得分:0)

我找到了解决方案,我的自定义UICollectionViewLayout没有contentSize,我在prepare()函数中添加了这个:

let contentWidth = Double(collectionView!.numberOfSections) * CELL_WIDTH
let contentHeight = Double(collectionView!.numberOfItems(inSection: 0)) * CELL_HEIGHT
self.contentSize = CGSize(width: contentWidth, height: contentHeight)

This is the result

相关问题