UITableView的编辑

创建UITableView的几个步骤

  • 第一步:遵循协议
  • 第二步:创建UITableView
  • 第三步:设置代理和数据源
  • 第四步:将UITableView添加到视图上
  • 第五步:实现协议中必须实现的方法

TableView的编辑

<1>删除
第一步:打开视图的交互
-(void)setEditing:(BOOL)editing animated:(BOOL)animated{      
     [self.tableView setEditing:editing animated:animated];
}
第二步:设置是否可以编辑
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{    return YES;
}
第三步:设置编辑状态
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{     
    return UITableViewCellEditingStyleNone;    
    //return   UITableViewCellEditingStyleDelete;  删除  
    //return   UITableViewCellEditingStyleInsert;  添加   
}
第四步:提交编辑状态,处理对应数据源
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
  //判定编辑状态
  if (editingStyle == UITableViewCellEditingStyleDelete) {           
        [self.array removeObjectAtIndex:indexPath.row];       
       //第一种1:加载数据(具体的某一行) 
        //[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:(UITableViewRowAnimationRight)];                        
       //第二种2:直接使视图重新加载数据
       [tableView reloadData];
    }   
  if(editingStyle == UITableViewCellEditingStyleInsert){
     [self.array insertObject:@"AAAAAAA" atIndex:indexPath.row+1];
     //第一种1:加载数据(具体的某一行)
     NSIndexPath *newIndexPath = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];  
    [tableView insertRowsAtIndexPaths:@[newIndexPath] withRowAnimation:UITableViewRowAnimationRight];
    //第二种2:直接使视图重新加载数据
    //[tableView reloadData];
   }
 }
<2>移动
第一步: 使TableView处于编辑状态
-(void)setEditing:(BOOL)editing animated:(BOOL)animated{
//调用父类编辑方法
[super setEditing:editing animated:animated];
//使当前tableView处于编辑状态
[self.tableView setEditing:editing animated:animated];  
//编辑按钮文字
self.editButtonItem.title = editing ? @"完成" : @"编辑";
}
//第二步 : 完成移动
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
  //根据原路径找到对应的分组
  NSMutableArray *array = self.dataDic[self.dataArray[sourceIndexPath.section]];
  //再找到对应的row(保存到model类中)
  Model *model = array[sourceIndexPath.row];
  //先删除
  [array removeObjectAtIndex:sourceIndexPath.row];
  //添加到目的路径
  [array insertObject:model atIndex:destinationIndexPath.row];
}
//第三步 : 检测跨区越界
-(NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath{
>  
   //若计划目的路径分区和原路径分区相同, 直接返回计划目的路径
  //若是同一个分区
  if (sourceIndexPath.section == proposedDestinationIndexPath.section) {
    //则到目的路径
    return proposedDestinationIndexPath;
  >    
   }else{
      //否则 返回原组
      return sourceIndexPath;
   }
}

你可能感兴趣的:(UITableView的编辑)