で画像を表示しています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
}