UICollectionView如何删除单元格(相当于commitEditingStyle)?

时间:2013-03-25 17:00:48

标签: objective-c uitableview ios6 uicollectionview

我正在使用UICollectionView构建我的第一个应用程序,并注意到在删除对象方面我无能为力。对于UITableView个应用,可以使用滑动删除方法:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
        // Delete the row from the data source
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    } 

}

当我使用GMGridView时,它的行为类似于iPhone主屏幕上的长按 - 视图可以摇动,并且可以显示删除按钮,该按钮用于删除视图。我当然可以尝试复制这种行为,但我不确定用户是否会“得到它”。

我对允许用户从UICollectionView 删除对象的选项感兴趣 - 我是否必须实现自己的删除手势/控件,或者是否有我缺少(或开源)?

4 个答案:

答案 0 :(得分:7)

我在包含CollectionView的视图控制器中插入了此代码并以此方式执行。您可能已经使用轻击手势来检测所选单元格。

- (IBAction)didLongPressCellToDelete:(UILongPressGestureRecognizer*)gesture {
CGPoint tapLocation = [gesture locationInView:self.myCollectionView];
NSIndexPath *indexPath = [self.myCollectionView indexPathForItemAtPoint:tapLocation];
if (indexPath && gesture.state == UIGestureRecognizerStateBegan) {
    NSLog(@"image with index %d to be deleted", indexPath.item);
    self.itemToBeDeleted = indexPath.item;
    UIAlertView *deleteAlert = [[UIAlertView alloc]
                             initWithTitle:@"Delete?"
                             message:@"Are you sure you want to delete this image?"
                             delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Yes", nil];
    [deleteAlert show];

}
}


- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
NSLog(@"selected button index = %d", buttonIndex);
if (buttonIndex == 1) {
    // Do what you need to do to delete the cell 
    [self.myCollectionView reloadData];
}
}

答案 1 :(得分:6)

默认UICollectionViewCell只有一个空白视图(没有标题,没有删除按钮,没有imageView)

子类UICollectionViewCell并在其上添加删除按钮。 setHidden = NO当你想要显示它时(例如向下滑动)

使用自定义委托删除数据并重新加载collectionView

示例使用向右滑动删除UICollectionViewCell在storyBoard中垂直滚动:

//Cell.h
@class MyCell;
@protocol MyCellDelegate
-(void)deleteButtonClick:(MyCell *)cell;
@end
@interface MyCell : UICollectionViewCell
@property (weak , nonatomic) id<MyCellDelegate> delegate;
@property (weak,nonatomic) IBOutlet *delButton;
@end

//Cell.m
-(void)awakeFromNib{
  [self.delButton setHidden:YES]
  //add Swipe right to here
}
-(void)handleSwipeRight:(UISwipeGestureRecognizer *)swipe {
   [self.delButton setHidden:NO];
}
-(IBAction)clickDelBut{
 [self.delegate deleteButtonClick:self];
}

//ViewController.m
//In cellForItemsAtIndexPath cell.delegate = self.

-(void)deleteButtonClick:(MyCell *)cell{
  //get indexPath, delete data and reload collectionView here
}

答案 2 :(得分:0)

我在UICollectionView中发现并实现删除和编辑内容的内容来自此博文。

基本上显示复制/粘贴等菜单,并添加我自己的删除操作。它类似于iSang的答案,没有添加在UICollectionViews中效果不佳的手势识别器。

它使用人们在想要复制和粘贴iOS其他部分中的文本和链接时用来调出编辑菜单的长按手势。

http://paulsolt.com/2012/11/uicollectionview-custom-actions-and-uimenucontroller/

答案 3 :(得分:0)

对于将来阅读本文的人来说,这是我一直在使用的有用库: https://github.com/Raizlabs/RZUtils/tree/master/RZUtils/Components/RZCollectionTableView

它使用UICollectionView模仿UITableView,因此您可以使用UITableView附带的所有优秀编辑功能获得集合视图的灵活性。

但是,如果您尝试实现不同类型的删除行为或不同的布局,据我所知您必须从头开始实现它。如果您不熟悉使用UIGestureRecognizers进行自定义操作,我建议您使用本教程: http://www.raywenderlich.com/6567/uigesturerecognizer-tutorial-in-ios-5-pinches-pans-and-more

希望有所帮助!