原文: http://blog.csdn.net/duxinfeng2010/article/details/7725897

这篇文章是建立在

代码实现 UITableView与UITableViewCell基础上进行修改,用不上的代码我注释调,部分不明白可以看看上篇博客;实现的功能是对UITableViewCell的标记、移动、删除、插入;

1通过修改cell的accessoryType属性来实现,首先,在ViewDidLoad中[tableView
setEditing:NO animated:YES];表示把单元格可编辑状态这只为NO
  1. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  2. {
  3. UITableViewCell *cellView = [tableView cellForRowAtIndexPath:indexPath];
  4. if (cellView.accessoryType == UITableViewCellAccessoryNone) {
  5. cellView.accessoryType=UITableViewCellAccessoryCheckmark;
  6. }
  7. else {
  8. cellView.accessoryType = UITableViewCellAccessoryNone;
  9. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  10. }
  11. }

当我们选中单元格的时候,调用此函数,首先是indexPath检测选中了哪一行,if判断当前单元格是否被标记,也就是当前单元格风格,是否为UITableViewCellAccessoryCheckmark风格,如果是,则换成UITableViewCellAccessoryNone(不被标记风格)风格,以下是accessoryType四个风格属性

 UITableViewCellAccessoryCheckmark
                UITableViewCellAccessoryDetailDisclosureButton
        
UITableViewCellAccessoryDisclosureIndicator
  UITableViewCellAccessoryNone
     
2.移动
 
实现移动单元格就需要把单元格的编辑属性设置为YES,[tableView
setEditing:YES animated:YES];
  1. //返回YES,表示支持单元格的移动
  2. -(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
  3. {
  4. return YES;
  5. }
  1. //单元格返回的编辑风格,包括删除 添加 和 默认  和不可编辑三种风格
  2. -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
  3. {
  4. return UITableViewCellEditingStyleInsert;
  5. }

三种风格的分别是

UITableViewCellEditingStyleDelete                                                UITableViewCellEditingStyleInsert

  

UITableViewCellEditingStyleNone

实现移动的方法
  1. -(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
  2. {
  3. //    需要的移动行
  4. NSInteger fromRow = [sourceIndexPath row];
  5. //    获取移动某处的位置
  6. NSInteger toRow = [destinationIndexPath row];
  7. //    从数组中读取需要移动行的数据
  8. id object = [self.listData objectAtIndex:fromRow];
  9. //    在数组中移动需要移动的行的数据
  10. [self.listData removeObjectAtIndex:fromRow];
  11. //    把需要移动的单元格数据在数组中,移动到想要移动的数据前面
  12. [self.listData insertObject:object atIndex:toRow];
  13. }

单元格的移动是选中单元格行后面三条横线才可以实现移动的

  
3.删除
首先是判断(UITableViewCellEditingStyle)editingStyle,所以
  1. //单元格返回的编辑风格,包括删除 添加 和 默认  和不可编辑三种风格
  2. -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
  3. {
  4. return UITableViewCellEditingStyleDelete;
  5. }
  1. -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  2. {
  3. if (editingStyle==UITableViewCellEditingStyleDelete) {
  4. //        获取选中删除行索引值
  5. NSInteger row = [indexPath row];
  6. //        通过获取的索引值删除数组中的值
  7. [self.listData removeObjectAtIndex:row];
  8. //        删除单元格的某一行时,在用动画效果实现删除过程
  9. [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
  10. }
  11. }

删除了张四 效果图:

    
4.添加
实现方法和删除方法相同,首先还是返回单元格编辑风格
  1. //单元格返回的编辑风格,包括删除 添加 和 默认  和不可编辑三种风格
  2. -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
  3. {
  4. return UITableViewCellEditingStyleInsert;
  5. }

为了显示效果明显,在.h文件中声明一个变量i

  1. #import <UIKit/UIKit.h>
  2. @interface STViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
  3. {
  4. NSInteger i;
  5. }
  6. @property(strong,nonatomic) NSMutableArray *listData;
  7. @property(strong,nonatomic)UITableView *tableView;
  8. @property(strong,nonatomic)UITableViewCell *tableViewCell;
  9. @end

  1. -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  2. {
  3. if (editingStyle==UITableViewCellEditingStyleDelete) {
  4. //        获取选中删除行索引值
  5. NSInteger row = [indexPath row];
  6. //        通过获取的索引值删除数组中的值
  7. [self.listData removeObjectAtIndex:row];
  8. //        删除单元格的某一行时,在用动画效果实现删除过程
  9. [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
  10. }
  11. if(editingStyle==UITableViewCellEditingStyleInsert)
  12. {
  13. i=i+1;
  14. NSInteger row = [indexPath row];
  15. NSArray *insertIndexPath = [NSArray arrayWithObjects:indexPath, nil];
  16. NSString *mes = [NSString stringWithFormat:@"添加的第%d行",i];
  17. //        添加单元行的设置的标题
  18. [self.listData insertObject:mes atIndex:row];
  19. [tableView insertRowsAtIndexPaths:insertIndexPath withRowAnimation:UITableViewRowAnimationRight];
  20. }
  21. }

运行效果图:

     

在删除和添加单元格的用到UITableViewRowAnimation动画效果,它还有其他几种效果,在此不做测试

UITableViewRowAnimationAutomatic      UITableViewRowAnimationTop

UITableViewRowAnimationBottom          UITableViewRowAnimationLeft

UITableViewRowAnimationRight             UITableViewRowAnimationMiddle

UITableViewRowAnimationFade              UITableViewRowAnimationNone

 
 
本人补充 :

//设置进入编辑状态时,Cell不会缩进

- (BOOL)tableView: (UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath

{

return NO;

}

//使Cell显示移动按钮

- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath;

//在下面方法中添加 cell.showsReorderControl =YES;

 

最新文章

  1. JavaIO流文件的操作总结
  2. 树(二)&mdash;&mdash;二叉树
  3. UVA 315 315 - Network(求割点个数)
  4. WebAPI GET和POST请求的几种方式
  5. Codeforces Round #329 div2
  6. js性能优化--学习笔记
  7. Conversion to Dalvik format failed with error 1(android)
  8. FZU Problem 1895 整除45问题(整除问题+字符串维护+优化)
  9. centos perl: symbol lookup error: /usr/local/lib64/perl5/auto/DBD/mysql/mysql.so: undefined symbol: mysql_init
  10. Class:DbConnectionManipulator.cs
  11. 关于JS的一些东西
  12. HDU - 3521 An easy Problem(矩阵快速幂)
  13. TERMIOS详解【转】
  14. npm国内镜像
  15. [openjudge-搜索]深度优先搜索之马走日
  16. 【365】拉格朗日乘子法与KKT条件说明
  17. linux上安装rabbitMQ
  18. 爬虫、网页分析解析辅助工具 Xpath-helper
  19. 51NOD 1081 子段求和
  20. http状态码学习笔记

热门文章

  1. Android Studio 运行、编译卡死的解决办法
  2. maven配置默认jdk版本
  3. 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property &#39;source&#39; to
  4. Hibernate(八)一对多单向关联映射
  5. idea安装Scala插件
  6. [cocos2d-x3.0]Android+NDK+Eclipse环境搭建及编译步骤~
  7. windows调用ubuntu下的sublimeText2环境搭建
  8. OpenStack Havana 部署在Ubuntu 12.04 Server 【OVS+GRE】(三)——计算节点的安装
  9. 简单粗暴地理解 JavaScript 原型链
  10. Java Web系列:Spring依赖注入基础