博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITableView实现划动删除
阅读量:5993 次
发布时间:2019-06-20

本文共 2498 字,大约阅读时间需要 8 分钟。

先前的准备工作:

第一步,准备好数据源.

#import <UIKit/UIKit.h>

@interface UITableCellSwapDeleteViewController : UIViewController <UITableViewDelegate>{

   IBOutlet UITableView *testTableView;

   NSMutableArray *dataArray;

}

@property (nonatomic, retain) UITableView *testTableView;

@property (nonatomic, retain) NSMutableArray *dataArray;

@end

- (void)viewDidLoad {

   [super viewDidLoad];

   dataArray = [[NSMutableArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil];

}

这里笔者定义了并实现了一个一维的可变数组.为什么要用可变数组呢?因为我们要删除里面的数据呀.

第二步,展示数据.

- (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;

}

通过实现上面三个代理方法向UITableView中添加了数据.

通过上面两步就实现了数据展示工作,接下就实现关键的数据删除了.

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {

   return YES;

}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { 

    if (editingStyle == UITableViewCellEditingStyleDelete) {

        [dataArray removeObjectAtIndex:indexPath.row];

        // Delete the row from the data source.

        [testTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];     

    }    

    else if (editingStyle == UITableViewCellEditingStyleInsert) {

    // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view.

    }    

}

启用上面两个代理,并增加数据删除操作:

[dataArray removeObjectAtIndex:indexPath.row];

在一条数据上向右划动一下.

点Delete.

是不是就成功删除了一条数据呢?

按理说故事讲到这里也就讲完了.但是笔者想延伸一下.注意看图二划动以后的"Delete",你有没有想把这个东东改掉的冲动呢?比如改成:下载?其实很简单,其实下面这个代理方法:

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{

       return @"下载";

}

再划动一下,是不是变了呢?

 

社区原帖:

转载于:https://www.cnblogs.com/sany007/archive/2013/02/22/2922838.html

你可能感兴趣的文章
10秒抓人眼球的“技术类简历”怎么写?
查看>>
数据库和ado连接语句的使用总结
查看>>
RedMonk 语言排行:Kotlin 上升 8 位,TS 快进前 10
查看>>
React UI 库: React Suite 3.8.3 版本发布
查看>>
Linux 学习笔记-第一阶段-基础入门之Linux发展史02
查看>>
Python爬虫:Scrapy框架的安装和基本使用
查看>>
Taro 1.2.14 发布,BAT 小程序、H5 与 RN 端统一框架
查看>>
重磅:JDK11正式发布!史上最全特性完整解读!
查看>>
机器学习实战之树回归
查看>>
这些拍案惊奇的智障桥段,分明是在蔑视我作为程序员的debug
查看>>
Keepalived & LVS 搭建高可用的 Web 服务
查看>>
JS中判断null、undefined与NaN的方法
查看>>
PSR规范0-4整理
查看>>
【原创】如何写一个框架:步骤(上)
查看>>
linux后台执行命令:&与nohup的用法
查看>>
bwdistsc 快速距离场计算函数解析
查看>>
算法面试题(二)
查看>>
Neditor 2.1.16 发布,修复缩放图片问题
查看>>
nginx 1.13.0的配置文件设置
查看>>
CSS-左下角的边框半径 | border-bottom-left-radius
查看>>