gpt4 book ai didi

Swift collectionview 选择不返回 cellForItemAt 处的单元格

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

当我不希望在函数 cellForRowAt 中显示单元格时,我一直在努力解决这个问题。

我尝试隐藏该单元格,但它在其他单元格之间给了我一个空白。

我想在显示单元格之前检查数组中是否存在值。

最佳答案

你为什么不使用

func collectionView(_ collectionView: UICollectionView!, layout _: UICollectionViewLayout!, sizeForItemAtIndexPath _: IndexPath!) -> CGSize {
if !exists {
return CGSize(width: 0, height: 0)
}

return CGSize(width: yourWidth, height: yourHeight)
}

您可以自定义任何collectionViewCell大小

关于Swift collectionview 选择不返回 cellForItemAt 处的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45732409/

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