gpt4 book ai didi

iphone - 如何从UICollectionView删除项目?

转载 作者:行者123 更新时间:2023-12-01 18:22:59 24 4
gpt4 key购买 nike

我正在collection view上显示图像。我想删除button click上的每个项目。现在,我可以删除didSelect method上的项目。

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
[array removeObjectAtIndex:indexPath.row];
[self.colleVIew deleteItemsAtIndexPaths:[NSArray arrayWithObject:indexPath]];
}

我在 CollectionCell上放置了按钮,可以找到 indexpath.row on click。但是如何删除
-(void)chat:(int)i 
{
NSLog(@"index path%d",i);
[array removeObjectAtIndex:i]; // array object is getting removed,how to delete the CollectionviewCell
}

最佳答案

如果您也确实了解本节:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
[self.colleVIew deleteItemsAtIndexPaths:[NSArray arrayWithObject:[indexPath]]];

关于iphone - 如何从UICollectionView删除项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16199275/

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