我有一个名为String的public static int CountNumbers(int[] sortedArray, int lessThan)
{
return sortedArray.ToList().Where(x=>x < lessThan).Count();
}
的100个项目的数组。我有一个由1个部分组成的集合视图,其中有100个cellNames
行。我正在寻找这样的东西-
customCollectionViewCell
总而言之,我需要for cellName in cellNames {
if cellName.index == cellNames[indexpath.row] {
let cellName = cell.nameTextField
}
}
来索引0 ... 100 == cellForRowAt 0 ... 100
答案 0 :(得分:2)
您似乎正在创建100个静态单元格,并尝试用show($id = null)
填充它们。正确的方法是遵循cellNames
并将项数设置为UICollectionViewDataSource
的计数,并使用cellNames
中提供的indexPath访问数组的每个元素。
cellForItemAt