gpt4 book ai didi

ios - 将 UICollectionView 的最后一行居中

转载 作者:行者123 更新时间:2023-11-28 07:48:57 26 4
gpt4 key购买 nike

我有一个像这样显示的 7 个单元格的 UICollectionView

X X
X X
X X
X

我需要这样显示

X X
X X
X X
X

这如何在 Swift 中完成?

最佳答案

您可以在 collectionViewLayout 函数中进行这个简单的计算。

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {

//return itemSize
let spaceBetweenCell :CGFloat = 0
let screenWidth = UIScreen.main.bounds.size.width - CGFloat(2 * spaceBetweenCell)
let totalSpace = spaceBetweenCell * 1.0
if indexPath.row == categories.count-1 {
// check if last cell is odd
if categories.count % 2 == 1 {
return CGSize(width: screenWidth , height: (screenWidth-totalSpace)/4) // all Width and same previous height
}else {
return itemSize
}
}else{
return itemSize
}
}

关于ios - 将 UICollectionView 的最后一行居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50199079/

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