gpt4 book ai didi

swift - 如何实现这种之字形 Collection View 布局?

转载 作者:行者123 更新时间:2023-11-28 06:00:52 24 4
gpt4 key购买 nike

下面是我希望单元格的样子,Here's how I want the cells to look like

我在做 indexPath.row % 3 == 0 但不幸的是这不起作用。

最佳答案

和collection view的布局无关,是你想怎么显示cell。

我建议在 collectionView(_:willDisplay:forItemAt:) 中执行此逻辑如下:

假设您的 View Controller 符合 UICollectionViewDelegate:

func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
cell.backgroundColor = [.purple, .white, .white, .purple][indexPath.item % 4]
}

感谢@vacawama用于优雅编辑([.purple, .white, .white, .purple][indexPath.item % 4])。

关于swift - 如何实现这种之字形 Collection View 布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49807016/

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