当前位置: 首页 > 编程笔记 >

iOS应用中UITableView左滑自定义选项及批量删除的实现

周鸿云
2023-03-14
本文向大家介绍iOS应用中UITableView左滑自定义选项及批量删除的实现,包括了iOS应用中UITableView左滑自定义选项及批量删除的实现的使用技巧和注意事项,需要的朋友参考一下

实现UITableView左滑自定义选项
当UITableView进入编辑模式,在进行左滑操作的cell的右边,默认会出现Delete按钮,如何自定义左滑出现的按钮呢?

只需要实现UITableView下面的这个代理方法。


- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath

{

    UITableViewRowAction *likeAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"喜欢" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {

      // 实现相关的逻辑代码

      // ...

      // 在最后希望cell可以自动回到默认状态,所以需要退出编辑模式

      tableView.editing = NO;

    }];

    UITableViewRowAction *deleteAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {       // 首先改变model       [self.books removeObjectAtIndex:indexPath.row];       // 接着刷新view       [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];       // 不需要主动退出编辑模式,上面更新view的操作完成后就会自动退出编辑模式     }];

    return @[deleteAction, likeAction]; }


此时左滑就会出现两个按钮,一个是喜欢,另一个是删除。出现的顺序和在这个方法中返回的数组中的元素顺序相关。

如果实现了上述方法,那么之前提到过的tableView:commitEditingStyle:forRowAtIndexPath:和tableView: titleForDeleteConfirmationButtonForRowAtIndexPath:方法就不会再调用了。(如果为了兼容以前的版本,那么需要实现tableView:commitEditingStyle:forRowAtIndexPath:方法,在这个方法里什么都不用做即可。)


UITableview的多行同时删除
下面这段代码配合xib使用, 不过关键不在这地方,记住后面的使用到的委托。

其实质就是数组array的删除操作。


//

//  UITableViewDelteMutilRowsViewController.m

//  UITableViewDelteMutilRows

//

#import "UITableViewDelteMutilRowsViewController.h"

@implementation UITableViewDelteMutilRowsViewController @synthesize tableview; @synthesize dataArray; @synthesize deleteDic; @synthesize leftButton; @synthesize rightButton; #pragma mark - #pragma mark View lifecycle

- (void)viewDidLoad {     [super viewDidLoad];     dataArray = [[NSMutableArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",nil];     deleteDic = [[NSMutableDictionary alloc] init];

    rightButton.title = @"编辑"; }

- (IBAction)choseData{     if (rightButton.title == @"编辑") {         rightButton.title = @"确定";         [self.tableview setEditing:YES animated:YES];     }     else {         rightButton.title = @"编辑";         [deleteDic removeAllObjects];         [self.tableview setEditing:NO animated:YES];     }

} - (IBAction)deleteFuntion{     [dataArray removeObjectsInArray:[deleteDic allKeys]];         [self.tableview deleteRowsAtIndexPaths:[NSArray arrayWithArray:[deleteDic allValues]] withRowAnimation:UITableViewRowAnimationFade];     [deleteDic removeAllObjects];     }

- (void)dealloc {     [leftButton release];     [rightButton release];     [deleteDic release];     [dataArray release];     [tableview release];     [super dealloc]; } #pragma mark - #pragma mark Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {     // Return the number of sections.     return 1; }

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {     // Return the number of rows in the section.     return [dataArray count]; }

// Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {         static NSString *CellIdentifier = @"Cell";         UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];     if (cell == nil) {         cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];     }     // Configure the cell...     cell.textLabel.text = [dataArray objectAtIndex:indexPath.row];     return cell; }

/*//这里设置为可滑动编辑删除  // Override to support conditional editing of the table view.  - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {  // Return NO if you do not want the specified item to be editable.  return YES;  }  */

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {     return UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert; }

#pragma mark - #pragma mark Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {     if (rightButton.title== @"确定") {         [deleteDic setObject:indexPath forKey:[dataArray objectAtIndex:indexPath.row]];       }     else {     } }

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{     if (rightButton.title == @"确定") {         [deleteDic removeObjectForKey:[dataArray objectAtIndex:indexPath.row]];     } } @end

 类似资料:
  • 本文向大家介绍iOS App中UITableView左滑出现删除按钮及其cell的重用,包括了iOS App中UITableView左滑出现删除按钮及其cell的重用的使用技巧和注意事项,需要的朋友参考一下 UITableView的编辑模式 实现UITableView简单的删除功能(左滑出现删除按钮) 首先UITableView需要进入编辑模式。实现下面的方法,即使什么代码也不写也会进入编辑模式:

  • 本文向大家介绍Android 实现左滑出现删除选项,包括了Android 实现左滑出现删除选项的使用技巧和注意事项,需要的朋友参考一下 滑动删除的部分主要包含两个部分, 一个是内容区域(用于放置正常显示的view),另一个是操作区域(用于放置删除按钮)。默认情况下,操作区域是不显示的,内容区域的大小是填充整个容 器,操作区域始终位于内容区域的右面。当开始滑动的时候,整个容器中的所有子view都像左

  • 本文向大家介绍iOS中给UITableView的侧滑删除增加多个按钮的实现方法,包括了iOS中给UITableView的侧滑删除增加多个按钮的实现方法的使用技巧和注意事项,需要的朋友参考一下 一. 需求: cell的侧滑删除默认只有一个删除按钮, 给侧滑添加多个按钮, '删除', '置顶', '更多'.  二. 实现说明: 1) 我们在使用一些应用的时候,在滑动一些联系人的某一行的时候,会出现删除

  • 问题内容: 我正在使用Django 1.0.2。我已经写了一个由模型支持的ModelForm。此模型具有一个ForeignKey,其中blank = False。当Django为该表单生成HTML时,它会创建一个选择框,其中对ForeignKey引用的表中的每一行都有一个选项。它还在列表顶部创建一个没有值的选项,并显示为一系列破折号: 我想知道的是: 从选择框中删除此自动生成的选项的最干净的方法是

  • 本文向大家介绍iOS自定义View实现卡片滑动,包括了iOS自定义View实现卡片滑动的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了iOS自定义View实现卡片滑动效果的具体代码,供大家参考,具体内容如下 说明 控件基于UIView封装完成,采用UIPanGestureRecognizer监听自身的触摸事件,以此处理各种滑动动画操作。 内容之间可以循环切换,采用类似tableVie

  • 我已经在我的应用程序中使用了上述代码。编辑部分工作正常,但问题是,只有当我们在单元格上从左向右滑动时,删除按钮才会出现。现在我有了一个菜单,可以像Facebook一样从左向右滑动。那么,我如何确保当用户从右向左滑动时,删除按钮出现呢。