这里有一个完整的数组,应如何在collectionView中分配它。它有6列,包含12个项目,到达第12个项目时会重复:
let writtenOutAray = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11",
"5", "6", "7", "8", "9", "10", "11", "0", "1", "2", "3", "4",
"10", "11", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "0", "1",
"7", "8", "9", "10", "11", "0", "1", "2", "3", "4", "5", "6",
"3", "4", "5", "6", "7", "8", "9", "10", "11", "0", "1", "2",
]
只要说:
let sufficientArray = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11"]
我的意图是这样
//starting column 1 with cell index 0
// column 2 with index 5
// column 3 with index 10
// column 4 with index 2
// column 5 with index 7
// column 6 with index 3
一个插座集合可以有多个具有相同索引的单元格,以在一个collectionView中显示相同索引的相同内容吗?