gpt4 book ai didi

ios - 选择时如何更改 Collection View 单元格背景颜色?

转载 作者:行者123 更新时间:2023-11-29 10:27:21 26 4
gpt4 key购买 nike

我使用此代码,如果选择了单元格,则背景颜色必须在 ImageView 中更改,它被放置在 Collection View 单元格中。 但是它不起作用

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
if (cell.selected) {
cell.img_cell.backgroundColor = [UIColor colorFromHexString:@"#ffc400"]; // highlight selection
}
else
{
cell.backgroundColor = [UIColor clearColor]; // Default color
}
NSLog(@"Selected section>> %@",[arr_images objectAtIndex:indexPath.row]);

// cell.backgroundColor=[UIColor colorFromHexString:@"#ffc400"];
}

最佳答案

现在它的工作我删除了 if 条件并尝试使用 cellForItemAtIndexPath 。

cell = [collectionView cellForItemAtIndexPath:indexPath];

cell.img_cell.backgroundColor = [UIColor colorFromHexString:@"#ffc400"]; // high

关于ios - 选择时如何更改 Collection View 单元格背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31487974/

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