コレクションビューがあり、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をリロードする必要があるため、削除後のセル配置のアニメーションはありません。アイデアを提案してください。
-(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) {
}];
}
これを試して。それはあなたのために働くかもしれません。
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)
スウィフト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)
})
}
[array removeObjectAtIndex:[indexPath row]];
[collection reloadData]; // Collection is UICollectionView
これを試して。
[array removeObjectAtIndex:[indexPath row]];
[self.collectionView deleteItemsAtIndexPaths:@[indexPath]];
通常は大丈夫です... この投稿 が表示されます。同じ主題を扱っています。
答えがわかりました.
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]];
}