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