web-dev-qa-db-ja.com

indexpath.rowを使用してUICollectionViewからアイテムを削除する方法

コレクションビューがあり、didSelectメソッドのコレクションビューからセルを削除しようとしました。次のメソッドを使用して成功しました

  [colleVIew deleteItemsAtIndexPaths:[NSArray arrayWithObject:indexPath]];

しかし今、CollectionView Cellからボタンクリックで項目を削除する必要があります。ここでは、indexpath.rowのみを取得します。これからは、アイテムを削除できません。こうやってみました。

-(void)remove:(int)i {

    NSLog(@"index path%d",i);
   [array removeObjectAtIndex:i];

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

ただし、CollectionViewをリロードする必要があるため、削除後のセル配置のアニメーションはありません。アイデアを提案してください。

19
user2000452
-(void)remove:(int)i {

    [self.collectionObj performBatchUpdates:^{
        [array removeObjectAtIndex:i];
        NSIndexPath *indexPath =[NSIndexPath indexPathForRow:i inSection:0];
        [self.collectionObj deleteItemsAtIndexPaths:[NSArray arrayWithObject:indexPath]];

    } completion:^(BOOL finished) {

    }];
}

これを試して。それはあなたのために働くかもしれません。

57
LittleIDev

Swift 3ソリューション:

func remove(_ i: Int) {

    myObjectsList.remove(at: i)

    let indexPath = IndexPath(row: i, section: 0)

    self.collectionView.performBatchUpdates({
        self.collectionView.deleteItems(at: [indexPath])
    }) { (finished) in
        self.collectionView.reloadItems(at: self.collectionView.indexPathsForVisibleItems)
    }

}

そして、削除呼び出しの例:

self.remove(indexPath.row)
13
buxik

スウィフト3:

func remove(index: Int) {
    myObjectList.remove(at: index)

    let indexPath = IndexPath(row: index, section: 0)
    collectionView.performBatchUpdates({
        self.collectionView.deleteItems(at: [indexPath])
    }, completion: {
        (finished: Bool) in
        self.collectionView.reloadItems(at: self.collectionView.indexPathsForVisibleItems)
    })
}
3
[array removeObjectAtIndex:[indexPath row]];
    [collection reloadData]; // Collection is UICollectionView

これを試して。

3
user1025285

[array removeObjectAtIndex:[indexPath row]];

[self.collectionView deleteItemsAtIndexPaths:@[indexPath]];

通常は大丈夫です... この投稿 が表示されます。同じ主題を扱っています。

1
Plokstorm

答えがわかりました.

CollectionViewCellにボタンを作成します// removeBtnという名前を付けました

次に、CollectionView Delegate

 - cellForItemAtIndexPath

   [cell.removeBtn addTarget:self action:@selector(RemovePrssd:) forControlEvents:UIControlEventTouchUpInside];

次に、メソッドを追加します

-(void)RemovePrssd:(id)sender{

 UIView *senderButton = (UIView*) sender;
 NSIndexPath *indexPath = [colleVIew indexPathForCell: (UICollectionViewCell *)[[senderButton superview]superview]];

  [array removeObjectAtIndex:indexPath.row];
  [colleVIew deleteItemsAtIndexPaths:[NSArray arrayWithObject:indexPath]];
  }
0
user2000452