原文: http://blog.csdn.net/duxinfeng2010/article/details/7725897
这篇文章是建立在
代码实现 UITableView与UITableViewCell基础上进行修改,用不上的代码我注释调,部分不明白可以看看上篇博客;实现的功能是对UITableViewCell的标记、移动、删除、插入;
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- UITableViewCell *cellView = [tableView cellForRowAtIndexPath:indexPath];
- if (cellView.accessoryType == UITableViewCellAccessoryNone) {
- cellView.accessoryType=UITableViewCellAccessoryCheckmark;
- }
- else {
- cellView.accessoryType = UITableViewCellAccessoryNone;
- [tableView deselectRowAtIndexPath:indexPath animated:YES];
- }
- }
当我们选中单元格的时候,调用此函数,首先是indexPath检测选中了哪一行,if判断当前单元格是否被标记,也就是当前单元格风格,是否为UITableViewCellAccessoryCheckmark风格,如果是,则换成UITableViewCellAccessoryNone(不被标记风格)风格,以下是accessoryType四个风格属性
- //返回YES,表示支持单元格的移动
- -(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
- {
- return YES;
- }
- //单元格返回的编辑风格,包括删除 添加 和 默认 和不可编辑三种风格
- -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- return UITableViewCellEditingStyleInsert;
- }
UITableViewCellEditingStyleDelete UITableViewCellEditingStyleInsert
UITableViewCellEditingStyleNone
- -(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
- {
- // 需要的移动行
- NSInteger fromRow = [sourceIndexPath row];
- // 获取移动某处的位置
- NSInteger toRow = [destinationIndexPath row];
- // 从数组中读取需要移动行的数据
- id object = [self.listData objectAtIndex:fromRow];
- // 在数组中移动需要移动的行的数据
- [self.listData removeObjectAtIndex:fromRow];
- // 把需要移动的单元格数据在数组中,移动到想要移动的数据前面
- [self.listData insertObject:object atIndex:toRow];
- }
- //单元格返回的编辑风格,包括删除 添加 和 默认 和不可编辑三种风格
- -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- return UITableViewCellEditingStyleDelete;
- }
- -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
- {
- if (editingStyle==UITableViewCellEditingStyleDelete) {
- // 获取选中删除行索引值
- NSInteger row = [indexPath row];
- // 通过获取的索引值删除数组中的值
- [self.listData removeObjectAtIndex:row];
- // 删除单元格的某一行时,在用动画效果实现删除过程
- [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
- }
- }
删除了张四 效果图:
- //单元格返回的编辑风格,包括删除 添加 和 默认 和不可编辑三种风格
- -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- return UITableViewCellEditingStyleInsert;
- }
为了显示效果明显,在.h文件中声明一个变量i
- #import <UIKit/UIKit.h>
- @interface STViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
- {
- NSInteger i;
- }
- @property(strong,nonatomic) NSMutableArray *listData;
- @property(strong,nonatomic)UITableView *tableView;
- @property(strong,nonatomic)UITableViewCell *tableViewCell;
- @end
- -(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
- {
- if (editingStyle==UITableViewCellEditingStyleDelete) {
- // 获取选中删除行索引值
- NSInteger row = [indexPath row];
- // 通过获取的索引值删除数组中的值
- [self.listData removeObjectAtIndex:row];
- // 删除单元格的某一行时,在用动画效果实现删除过程
- [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
- }
- if(editingStyle==UITableViewCellEditingStyleInsert)
- {
- i=i+1;
- NSInteger row = [indexPath row];
- NSArray *insertIndexPath = [NSArray arrayWithObjects:indexPath, nil];
- NSString *mes = [NSString stringWithFormat:@"添加的第%d行",i];
- // 添加单元行的设置的标题
- [self.listData insertObject:mes atIndex:row];
- [tableView insertRowsAtIndexPaths:insertIndexPath withRowAnimation:UITableViewRowAnimationRight];
- }
- }
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;