gpt4 book ai didi

ios - 如何在 sizeForItem 中获取自定义 Collection View 单元格

转载 作者:行者123 更新时间:2023-11-30 11:41:52 26 4
gpt4 key购买 nike

如您所知,我们可以使用 UICollectionViewDelegateFlowLayout 中的 sizeForItemAt 方法设置 UICollectionView 单元格大小。但无法获取具有如下自定义类的单元格。

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
// This will raise runtime errors.
let cell = collectionView.cellForItem(at: indexPath) as! MyCustomCell
// Also this.
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "default", for: indexPath) as! MyCustomCell

return cell.dynamicSize
}

我应该做什么?

最佳答案

var size = super.collectionView(collectionView, layout: collectionViewLayout, sizeForItemAt: indexPath)

if let cell = collectionView.cellForItem(at: indexPath) as? MyCustomCell {
size = cell.dynamicSize
}
return size

关于ios - 如何在 sizeForItem 中获取自定义 Collection View 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49218683/

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