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;
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,658评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,482评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,213评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,395评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,487评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,523评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,525评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,300评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,753评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,048评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,223评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,905评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,541评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,168评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,417评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,094评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,088评论 2 352

推荐阅读更多精彩内容