day13---UITableViewEdit

单行编辑

  • (void)viewDidLoad {
    [super viewDidLoad];
//1.请求数据
id data = [HttpRequest requestDataOfFileName:[[NSBundle mainBundle] pathForResource:@"friends" ofType:@"plist"]];
//2.解析数据
self.dataArray = [[CategoryModelManager arrayWithContentOfData:data] mutableCopy];


//添加编辑按钮
/*********** 方式一 ******************/
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"编辑" style:UIBarButtonItemStylePlain target:self action:@selector(leftItemClick:)];

/************ 方式二 ****************/
self.navigationItem.rightBarButtonItem = self.editButtonItem;

}

-(void)leftItemClick:(UIBarButtonItem *)item
{
//通过属性editing来控制tableView是否进入编辑状态(YES编辑状态,NO关闭)
if (self.tableView.editing == NO) {
self.tableView.editing = YES;//进入编辑状态
item.title = @"完成";

}else
{
    self.tableView.editing = NO;
    item.title = @"编辑";
}

}

  • (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
    }

pragma mark - Table view data source

  • (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    return self.dataArray.count;
    }

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

return [[self.dataArray[section] friends] count];

}

  • (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *cellName = @"MyCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellName];
    if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellName];
    }

    CategoryModel *model = self.dataArray[indexPath.section];
    FriendsModel *fModel = model.friends[indexPath.row];

cell.imageView.image = [UIImage imageNamed:fModel.icon];
cell.textLabel.text = fModel.name;
cell.detailTextLabel.text = fModel.phoneNumber;


return cell;

}

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
CategoryModel *model = self.dataArray[section];
return model.name;
}

/************** 关于编辑的相关代理方法 *****************/
//1.哪些行进入编辑模式(默认所有的行都进入编辑模式)
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 0&&indexPath.row == 0) {
return NO;
}

return YES;

}

//2.进入编辑模式后的样式是什么(删除?增加?)
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 0) {
return UITableViewCellEditingStyleInsert;//增加样式
}
return UITableViewCellEditingStyleDelete;//删除样式
}

//在提交编辑动作时,(删除还是增加按钮别惦记是,响应该方法 ) 【** 重点 **】
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
//如果当前点击的是删除
if (editingStyle == UITableViewCellEditingStyleDelete)
{
//找到要删除的这个cell在数据园中所对应的数据模型对象
CategoryModel *model = self.dataArray[indexPath.section];
// FriendsModel *fModel = model.friends[indexPath.row];
//根据下标索引IndexPath.row在model.friends中中删除?
//直接在model.friends中删除fModel对象?
[model.friends removeObjectAtIndex:indexPath.row];

    //刷新整个tableView

// [self.tableView reloadData];
//刷新当前删除的哪一行数据
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];

}else if (editingStyle == UITableViewCellEditingStyleInsert)
{
    __weak MyTableViewController *weakself = self;
    __weak CategoryModel *cModel = self.dataArray[indexPath.section];
    
    //添加一个视图
    InsertView *view = [[[NSBundle mainBundle] loadNibNamed:@"InsertView" owner:nil options:nil] lastObject];
    view.block = ^(FriendsModel *model){
        
        [cModel.friends insertObject:model atIndex:0];
        //开启滚动
        weakself.tableView.scrollEnabled = YES;
        //刷新页面
        [weakself.tableView reloadData];
        
    };
    
    [self.tableView addSubview:view];
    
    self.tableView.scrollEnabled = NO;
    
}

}

//*********** 移动
//当执行移动操作的时候,调用
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
//1.先删除在原来的数据源中的model
CategoryModel *cModel = self.dataArray[fromIndexPath.section];
//找到移动的cell在该分区中对应的数据模型对象
FriendsModel *fModel = cModel.friends[fromIndexPath.row];
//从数据源中先删除该fModel
[cModel.friends removeObjectAtIndex:fromIndexPath.row];

//2.把该model插入到目标位置去
//找到目标位置所对应的那个分区
CategoryModel *cModel1 = self.dataArray[toIndexPath.section];
//把之前的对象插入到目标位置去
[cModel1.friends insertObject:fModel atIndex:toIndexPath.row];

//3.数据源发生改变,刷新页面
[self.tableView reloadData];

}

//设置哪些行可以移动(默认所有的都可以移动)
-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}


  • (void)viewDidLoad {
    [super viewDidLoad];
//1.请求数据
id data = [HttpRequest requestDataOfFileName:[[NSBundle mainBundle] pathForResource:@"friends" ofType:@"plist"]];
//2.解析数据
self.dataArray = [[CategoryModelManager arrayWithContentOfData:data] mutableCopy];


//添加编辑按钮
/*********** 方式一 ******************/
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"一键删除" style:UIBarButtonItemStylePlain target:self action:@selector(leftItemClick:)];

/************ 方式二 ****************/
self.navigationItem.rightBarButtonItem = self.editButtonItem;

//在编辑状态下,支持多选删除
self.tableView.allowsMultipleSelectionDuringEditing = YES;

}

-(void)leftItemClick:(UIBarButtonItem *)item
{

//在多选删除的模式下,选中cell后,可以通过下面的属性来直接获得选中的cell所对应的索引的集合
NSArray *indexPaths = self.tableView.indexPathsForSelectedRows;
NSLog(@"%@",indexPaths);

//拿到索引集合后,依次找到该索引所在数据源中对应的模型对象,删除这些数据模型对象;
NSMutableArray *deleteArr = [NSMutableArray array];
for (NSIndexPath *path in indexPaths) {
//通过索引在数据源张找到对应的数据模型
CategoryModel *cModel = self.dataArray[path.section];
FriendsModel *fModel = cModel.friends[path.row];
[deleteArr addObject:fModel];
}

for (CategoryModel *model in self.dataArray) {
    [model.friends removeObjectsInArray:deleteArr];
}


[self.tableView reloadData];

}

//*********** 移动
//当执行移动操作的时候,调用
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
//1.先删除在原来的数据源中的model
CategoryModel *cModel = self.dataArray[fromIndexPath.section];
//找到移动的cell在该分区中对应的数据模型对象
FriendsModel *fModel = cModel.friends[fromIndexPath.row];
//从数据源中先删除该fModel
[cModel.friends removeObjectAtIndex:fromIndexPath.row];

//2.把该model插入到目标位置去
//找到目标位置所对应的那个分区
CategoryModel *cModel1 = self.dataArray[toIndexPath.section];
//把之前的对象插入到目标位置去
[cModel1.friends insertObject:fModel atIndex:toIndexPath.row];

//3.数据源发生改变,刷新页面
[self.tableView reloadData];

}

//设置哪些行可以移动(默认所有的都可以移动)
-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}

你可能感兴趣的:(day13---UITableViewEdit)