我有一个水平的集合视图,其中包含用于突出显示/着色所选单元格的代码。它突出显示所选的单元格,但之后每5个单元格也会突出显示。知道发生了什么事吗?
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
for(int x = 0; x < [cellArray count]; x++){
UICollectionViewCell *UnSelectedCell = [cellArray objectAtIndex:x];
UnSelectedCell.backgroundColor = [UIColor colorWithRed:0.2 green:0.5 blue:0.8 alpha:0.0];
}
UICollectionViewCell *SelectedCell = [cellArray objectAtIndex:indexPath.row];
SelectedCell.backgroundColor = [UIColor colorWithRed:0.2 green:0.5 blue:0.8 alpha:1.0];
cellSelected = indexPath.row;
NSLog(@"%i", cellSelected);
}
答案 0 :(得分:6)
这是因为滚动时单元格重复使用。您必须存储模型中所有行的“突出显示”状态(例如,在数组或NSMutableIndexSet
中),并在collectionView:cellForItemAtIndexPath:
中根据该行的状态设置单元格的背景颜色
在didSelectItemAtIndexPath
中,设置新选择的颜色就足够了
以及之前选择的单元格。
更新:如果一次只能选择一个单元格,您只需要记住 所选单元格的索引路径。
为当前突出显示的行声明属性selectedIndexPath
:
@property (strong, nonatomic) NSIndexPath *selectedIndexPath;
在didSelectItemAtIndexPath
中,取消突出显示上一个单元格,然后突出显示新单元格:
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
if (self.selectedIndexPath != nil) {
// deselect previously selected cell
UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:self.selectedIndexPath];
if (cell != nil) {
// set default color for cell
}
}
// Select newly selected cell:
UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];
if (cell != nil) {
// set highlight color for cell
}
// Remember selection:
self.selectedIndexPath = indexPath;
}
在cellForItemAtIndexPath
中,使用正确的背景颜色:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Identifier" forIndexPath:indexPath];
if ([self.selectedIndexPath isEqual:indexPath) {
// set highlight color
} else {
// set default color
}
}
答案 1 :(得分:0)
我认为你使用可重复使用的细胞进行收集 - 有一点重要。 shell在重用单元格之前设置默认背景颜色。