UICollectionViewDataSource cellForItemAt 不要 运行 在 iOS 14

UICollectionViewDataSource cellForItemAt don't run at iOS 14

我在 Xcode 中将构建目标更新为 iOS 14 后,未调用 cellForItemAt。然而,numberOfItemsInSection 被调用但 cellForItemAt 没有被调用,这让它变得很奇怪。我以前从未见过这个。

知道它可能是什么吗?

extension LoginTableCell: UICollectionViewDelegate, UICollectionViewDataSource {

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return self.cells.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "LoginCollectionCell", 
    return cell
}

我在任何地方都看不到您设置单元格大小的位置,因此请确保您的单元格内容大小设置正确。如果您使用的是流式布局,则可以这样设置大小:

let layout = UICollectionViewFlowLayout()
layout.scrollDirection = .vertical
layout.itemSize = CGSize(width: 50, height: 50)
collectionView.collectionViewLayout = layout

或者,您可以使用 UICollectionViewDelegateFlowLayout 协议 return 单元格的大小:

extension LoginTableCell: UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return self.cells.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "LoginCollectionCell", 
    return cell
}

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    return CGSize(width: 100, height: 100)
}