@Sponge_CMZ
说明
UITableView中的cell的插入,删除,移动效果实现,最最经典的就是Iphone中的通讯录
文章中 核心API 为主编写
/** TableView 进入或退出编辑状态(TableView 方法). */
- (void)setEditing:(BOOL)editing animated:(BOOL)animate
/** 确定哪些行的cell可以编辑 (UITableViewDataSource协议中方法). */
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
/** 设置某一行cell的编辑模式 (UITableViewDelegate协议中方法). */
- (TableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
/** 提交编辑状态 (UITableViewDataSource协议中方法). */
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
/** 插入 cell (UITableView 方法). */
- (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
/** 删除 cell (UITableView 方法). */
- (void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
功能实现
思路
1.让TableView进入编辑状态
2.指定那些cell可以进行编辑
3.指定cell的编辑状态(删除还是插入)
4.选中删除(或插入)状态之后的操作(数据源进行更新,cell删除或插入)
code
1.让TableView 进入编辑状态
/*当点击UINavigationBar 上面系统提供的编辑按钮的时候, 系统会调用这个方法*/
- (void)setEditing:(BOOL)editing animated:animated
{
/*首先调用父类的方法*/
[super setEditing:editing animated:animated];
/*使tableView出于编辑状态*/
[self.tableView setEditing:editing animated:animated];
}
- 指定哪些行的 cell 可以进行编辑(UITableViewDataSource 协议方法)
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
if (0 == indexPath.row) {
return No; /*第一行不能进行编辑*/
} else {
return Yes;
}
}
3.指定cell的编辑状态(删除还是插入)(UITableViewDelegate 协议方法)
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
/** 不同的行, 可以设置不同的编辑样式, 编辑样式是一个枚举类型 */
if (indexPath.row == 0) {
return UITableViewCellEditingStyleInsert;
} else {
return UITableViewCellEditingStyleDelete;
}
}
4.选中删除(插入)状态之后操作 (数据源进行更新,cell删除或插入)(UITableViewDataSource的协议方法)
- (void)tableView :(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
/** 点击 删除 按钮的操作 */
if (editingStyle == UITableViewCellEditingStyleDelete) { /**< 判断编辑状态是删除时. */
/** 1. 更新数据源(数组): 根据indexPaht.row作为数组下标, 从数组中删除数据. */
[self.arr removeObjectAtIndex:indexPath.row];
/** 2. TableView中 删除一个cell. */
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationRight];
}
/** 点击 +号 图标的操作. */
if (editingStyle == UITableViewCellEditingStyleInsert) { /**< 判断编辑状态是插入时. */
/** 1. 更新数据源:向数组中添加数据. */
[self.arr insertObject:@"abcd" atIndex:indexPath.row];
/** 2. TableView中插入一个cell. */
[tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
}
UITableView cell 的移动
核心API
Class:UITableView
Delegate:UITableViewDataSource,UITableViewDelegate
/** TableView 进入或退出编辑状态(TableView 方法). */
- (void)setEditing:(BOOL)editing animated:(BOOL)animate
/** 指定 tableView 哪些行(cell) 可以移动. */
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
/** 移动 cell. */
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
功能实现
思路
1.让 TableView 进入或退出 编辑状态
2.指定 tableView 哪些行(cell) 可以移动
3.移动 cell 后的操作: 数据源进行更新
1 . 让 TableView 进入或退出 编辑状态
(UITableViewDataSource协议方法)
/** 当点击UINavigationBar 上面系统提供的编辑按钮的时候, 系统会调用这个方法. */
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
/** 首先调用父类的方法. */
[super setEditing:editing animated:animated];
/** 使tableView处于编辑状态. */
[self.tableView setEditing:editing animated:animated];
}
2 .指定tableView那些行(cell)可以移动
((UITableViewDataSource协议方法))
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
/** 指定哪些行(cell)可以移动 */
if (0 == indexPath.row) {
return NO; /**< NO cell不能移动 */
} else {
return YES; /**< YES cell可以移动 */
}
}
3 . 移动 cell 后的操作: 数据源进行更新
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
/** 1. 从原位置移除,在从原位置移除之前, 需要保存一下原位置的数据, 同时持有一次. */
NSString *str = [[self.arr objectAtIndex:sourceIndexPath.row] retain];
[self.arr removeObjectAtIndex:sourceIndexPath.row];
/** 2. 添加到目的位置, 同时释放一次 */
[self.arr insertObject:str atIndex:destinationIndexPath.row];
[str release];
}
网友评论