如何实现这种之字形集合视图布局?

How do I achieve this zig-zag collection view layout?

这是我希望单元格的样子,

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

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

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

假设你的视图控制器符合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])。

cell.backgroundColor = [.purple, .white, .white, .purple][indexPath.item % 4]

感谢@vacawama