gpt4 book ai didi

ios - 点击时将图像设置为 UICollectionView Cell

转载 作者:行者123 更新时间:2023-11-29 00:48:56 25 4
gpt4 key购买 nike

我正在使用 UICollectionView,我想在用户点击单元格时显示复选框,我也启用了多重选择。我尝试从 didSelectItemAtIndexPath 取消隐藏 imageView,但它无法正常工作

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
cell.checkBox.hidden = NO;
cell.checkBox.image = [UIImage imageNamed:@"check"];
}

我点击一个单元格,然后 ImageView 出现在其他单元格上。但在同一个点击中,我还将 imagename 添加到 NSArray 并且它们的项目被正确添加。

最佳答案

你可以尝试以下

- (void)collectionView:(UICollectionView *)collectionViewdidSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell* cell = [collectionView cellForItemAtIndexPath:indexPath]; //typecast the cell to your custom cell
cell.checkBox.hidden = NO;
cell.checkBox.image = [UIImage imageNamed:@"check"];
}

关于ios - 点击时将图像设置为 UICollectionView Cell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38331828/

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