接着iOS学习之Table View的简单使用 这篇,这里主要讲UITableView 中的Cell的操作,包括标记、移动、删除、插入。

为了简单快捷,直接从原来那篇的代码开始,代码下载地址:http://download.csdn.net/detail/totogo2010/4361870

要进行数据的操作了,把代码里的不可变数组改成可变的:

NSArray *list -》NSMutableArray *list

1、标记Cell。

效果如下:

打开项目,

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath。

添加代码

  1. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  2. //    NSString *rowString = [self.list objectAtIndex:[indexPath row]];
  3. //    UIAlertView * alter = [[UIAlertView alloc] initWithTitle:@"选中的行信息" message:rowString delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
  4. //    [alter show];
  5. UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
  6. if (cell.accessoryType == UITableViewCellAccessoryNone) {
  7. cell.accessoryType = UITableViewCellAccessoryCheckmark;
  8. }else {
  9. cell.accessoryType = UITableViewCellAccessoryNone;
  10. }
  11. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  12. }

标记分别有四种效果:

UITableViewCellAccessoryCheckmark

UITableViewCellAccessoryDetailDisclosureButton

UITableViewCellAccessoryDisclosureIndicator

UITableViewCellAccessoryNone

可以自己试试。

2、删除Cell

想要实现移动或者删除行这样的操作,需要启动表格的编辑模式。使用的是setEditing:animated:方法。

打开xib,生成Table的IBoutlet映射  tableView;

在viewDidload里添加

[self.tableViewsetEditing:YES];

这是启动运行程序,

打开可编辑模式,默认情况显示删除的图标的。

实现删除的代码:

  1. - (void)tableView:(UITableView *)tableView commitEditingStyle:
  2. (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
  3. NSUInteger row = [indexPath row];
  4. if (editingStyle == UITableViewCellEditingStyleDelete) {
  5. [self.list removeObjectAtIndex:row];
  6. [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
  7. withRowAnimation:UITableViewRowAnimationAutomatic];
  8. }
  9. }

这个方法根据参数editingStyle是UITableViewCellEditingStyleDelete

在这删除行的方法又出现了一个常量:UITableViewRowAnimationAutomatic,它表示删除时的效果,类似的常量还有:

UITableViewRowAnimationAutomatic

UITableViewRowAnimationTop

UITableViewRowAnimationBottom

UITableViewRowAnimationLeft

UITableViewRowAnimationRight

UITableViewRowAnimationMiddle

UITableViewRowAnimationFade

UITableViewRowAnimationNone

从常量名称打开可以看出效果来。

这是运行,就可以删除其中的一个Cell行了。

3、移动Cell

添加代码如下:

3.1先把默认的删除的图标去掉

  1. - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
  2. editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
  3. return UITableViewCellEditingStyleInsert;
  4. }

3.2返回当前Cell是否可以移动

  1. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
  2. return YES;
  3. }

3.3执行移动操作

  1. - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)
  2. sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath {
  3. NSUInteger fromRow = [sourceIndexPath row];
  4. NSUInteger toRow = [destinationIndexPath row];
  5. id object = [self.list objectAtIndex:fromRow];
  6. [self.list removeObjectAtIndex:fromRow];
  7. [self.list insertObject:object atIndex:toRow];
  8. }

运行程序:

怎么移动呢?不要以为按住行的任何地方都能移动,要按住最左边的三道杠的图标才能拖动移动

4、插入cell:

4.1插入和删除差不多,在

- (void)tableView:(UITableView *)tableView commitEditingStyle:

(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

添加UITableViewCellEditingStyleInsert判断

  1. - (void)tableView:(UITableView *)tableView commitEditingStyle:
  2. (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
  3. NSUInteger row = [indexPath row];
  4. if (editingStyle == UITableViewCellEditingStyleDelete) {
  5. [self.list removeObjectAtIndex:row];
  6. [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
  7. withRowAnimation:UITableViewRowAnimationAutomatic];
  8. }else if(editingStyle == UITableViewCellEditingStyleInsert ){
  9. NSArray *insertIndexPaths = [NSArray arrayWithObjects:indexPath,nil];
  10. [self.list insertObject:@"inset new Cell" atIndex:row];
  11. [tableView insertRowsAtIndexPaths:insertIndexPaths withRowAnimation:UITableViewRowAnimationMiddle];
  12. }
  13. }

4.2 修改图标为插入样式。

  1. - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
  2. editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
  3. return UITableViewCellEditingStyleInsert;
  4. }

运行,点加号图标,

完成!

例子代码:http://download.csdn.net/detail/totogo2010/4398669

著作权声明:本文由http://blog.csdn.net/totogo2010/原创,欢迎转载分享。请尊重作者劳动,转载时保留该声明和作者博客链接,谢谢

最新文章

  1. cocos2d-x3.x自定义事件
  2. yum安装命令的使用方法
  3. leetcode 202
  4. 利用grep命令查找文件内容
  5. ubuntu下查找某个文件的路径
  6. SQL索引一步到位
  7. SQL Server 2005、SQL Server 2008版本比较
  8. function overloading/ declare function
  9. C++静态成员函数和静态成员变量的探索
  10. JS —— 数组与字符串方法
  11. cmstop传递什么控制器和方法---就实例化该控制器
  12. Unknown/unsupported storage engine: InnoDB
  13. .Net上传文件大小配置
  14. PHP截取特定字符串前后
  15. 6.5 Shell 算术计算
  16. BZOJ4735:你的生命已如风中残烛(组合数学)
  17. java web基础之mvc模式设计(一)--使用httpservlet实现mvc分层设计,DAO层使用的是dbutils实现与数据库的链接
  18. django框架之中间件
  19. MySQL笔记(五)之表的连接
  20. imx6 18bit display

热门文章

  1. C#/.NET 匿名函数会捕获变量,并延长对象的生命周期
  2. python笔记-13 mysql与sqlalchemy
  3. ORACLE PL/SQL:触发器
  4. 关于Visual studio 2017安装方法的若干问题
  5. BW模型数据删除
  6. ballerina 学习十三 函数&&documentation
  7. WINDOWS下kill进程的命令
  8. 使用模块化编译缩小 apk 体积
  9. saiku迁移至mysql步骤
  10. (转)Linq DataTable的修改和查询