web-dev-qa-db-ja.com

上からリロードせずにUICollectionViewからセルを削除します

IOSアプリでCollectionViewを使用しています。各コレクションセルには、削除ボタンが含まれています。ボタンをクリックすると、セルが削除されます。削除後、そのスペースは下のセルで埋められます(CollectionViewをリロードして上からやり直したくありません)

自動レイアウトでUICollectionViewから特定のセルを削除するにはどうすればよいですか?

18

ICollectionViewは、削除後にセルをアニメーション化し、自動的に再配置します。

選択したアイテムをコレクションビューから削除

[self.collectionView performBatchUpdates:^{

    NSArray *selectedItemsIndexPaths = [self.collectionView indexPathsForSelectedItems];

    // Delete the items from the data source.
    [self deleteItemsFromDataSourceAtIndexPaths:selectedItemsIndexPaths];

    // Now delete the items from the collection view.
    [self.collectionView deleteItemsAtIndexPaths:selectedItemsIndexPaths]; 

} completion:nil];



// This method is for deleting the selected images from the data source array
-(void)deleteItemsFromDataSourceAtIndexPaths:(NSArray  *)itemPaths
{
    NSMutableIndexSet *indexSet = [NSMutableIndexSet indexSet];
    for (NSIndexPath *itemPath  in itemPaths) {
        [indexSet addIndex:itemPath.row];
    }
    [self.images removeObjectsAtIndexes:indexSet]; // self.images is my data source

}
36
Anil Varghese

UITableviewControllerのようなUICollectionViewControllerに提供されるデリゲートメソッドはありません。長いジェスチャー認識機能をUICollectionViewに追加することで、手動で行うことができます。

 UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self
                                                                                         action:@selector(activateDeletionMode:)];
 longPress.delegate = self;
 [collectionView addGestureRecognizer:longPress];

LongGestureメソッドでは、その特定のセルにボタンを追加します。

- (void)activateDeletionMode:(UILongPressGestureRecognizer *)gr
{
    if (gr.state == UIGestureRecognizerStateBegan) {
        if (!isDeleteActive) {
        NSIndexPath *indexPath = [collectionView indexPathForItemAtPoint:[gr locationInView:collectionView]];
        UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];
        deletedIndexpath = indexPath.row;
        [cell addSubview:deleteButton];
        [deleteButton bringSubviewToFront:collectionView];
        }
     }
 }

そのボタンアクションで、

- (void)delete:(UIButton *)sender
{
    [self.arrPhotos removeObjectAtIndex:deletedIndexpath];
    [deleteButton removeFromSuperview];
    [collectionView reloadData];
}

私はそれがあなたを助けることができると思う。

7
Himanshu