iOS_UI_11_UITableView的编辑

第十一章 UITableView的编辑

一、UITableView编辑
1.UITableView编辑步骤
    1.打开编辑状态
       - (void)setEditing:(BOOL)editing animated:(BOOL)animated{
           //一步:要打开tableView的编辑状态,我们首先要获取tableView对象
           UITableView* mTableView = [self.view viewWithTag:1000];
           [mTableView setEditing:editing animated:animated];
           [mTableView reloadData];
       }
    2.协议设定
        1.确定Cell是否处于编辑状态
           - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
        2.设定Cell的编辑样式(删除、添加)
           -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
        3.编辑状态进行提交
           - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
               if (editingStyle == UITableViewCellEditingStyleDelete) {
                   //说明做的事删除操作
                   NSLog(@"你进行了删除操作");
                   //将数组中对应位置的数据干掉
                   [self.allDataMArray removeObjectAtIndex:indexPath.row];
                   //界面刷新  当数据源发生改变的时候我们需要刷新界面,让新的数据重新显示到界面上
           //        [tableView reloadData];//刷新整个视图
                  //删除对应位置的单元格
                  [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:(UITableViewRowAnimationRight)];
    
    
                }
               if (editingStyle == UITableViewCellEditingStyleInsert) {
               //说明做的是插入操作
               NSLog(@"你进行了插入操作");
               //先将数据添加到数组中
               [self.allDataMArray addObject:@"新增"];
               //增加单元格
                [tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:(UITableViewRowAnimationTop)];
                }
           }
    注意:编辑结束后,由于numberOfRowsInSection这个协议只在tableView添加到父视图的时候走一次,而且table上的数据都是由数组提供,因此,需要想将数组中的元素删除,然后让table的协议重新走一遍进行重新赋值
          即:先修改数据源,再刷新table(使用reloadData方法)
2.UITableView的移动
    1.实现协议:告诉tableView是否能够移动
        -(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath;
    2.移动
        - (void)tableView:(UITableView *)tableView  moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
            NSLog(@"移动结束了");
            //将移动的单元格上的数据提出来,保存起来
            NSString* string = self.allDataMArray[sourceIndexPath.row];
            //删除数组中的source位置的数据
            [self.allDataMArray removeObjectAtIndex:sourceIndexPath.row];
            //将数据插入到新的位置
            [self.allDataMArray insertObject:string atIndex:destinationIndexPath.row];
        }
3.设置某一行的编辑样式
    - (UITableViewCellEditingStyle) tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
       if (indexPath.row == self.allDataMArray.count) {
           //说明是最后一行,让最后一行的样式插入
           return UITableViewCellEditingStyleInsert;
        }
        //其余行未删除样式
        return UITableViewCellEditingStyleDelete;
    }
4.设置某一行能否移动  返回值为YES:该cell可以移动
    indexPath:能否移动的行的位置
     - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath{
     //设置添加联系人哪行不能移动
      if (indexPath.row == self.allDataMArray.count) {
       return NO;
      }
       return YES;
    }
5.移动过程中会执行的代理方法
    sourceIndexPath:cell原位置
    proposedDestinationIndexPath:想要(可能)移动到的位置
    - (NSIndexPath*)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath{
        //如果cell将要移动到的位置时添加联系人,那么我们就让他返回原位置
        if (proposedDestinationIndexPath.row == self.allDataMArray.count) {
           return sourceIndexPath;
        }
           return proposedDestinationIndexPath;
     }
6.进行编辑操作的按钮样式
    - (NSArray<UITableViewRowAction *>*)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{
      UITableViewRowAction* action_1 = [UITableViewRowAction rowActionWithStyle:(UITableViewRowActionStyleDefault) title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
            [self.allDataMArray removeObjectAtIndex:indexPath.row];
            //界面刷新  当数据源发生改变的时候我们需要刷新界面,让新的数据重新显示到界面上
            //        [tableView reloadData];//刷新整个视图
            //删除对应位置的单元格
            [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:(UITableViewRowAnimationRight)];
            NSLog(@"点击删除按钮");
        }];
        action_1.backgroundColor = [UIColor greenColor];
      UITableViewRowAction* action_2 = [UITableViewRowAction rowActionWithStyle:(UITableViewRowActionStyleDestructive) title:@"更多" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
            NSLog(@"点击更多按钮");
        }];
      UITableViewRowAction* action_3 = [UITableViewRowAction rowActionWithStyle:(UITableViewRowActionStyleNormal) title:@"取消操作" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
            NSLog(@"点击取消按钮");
      }];
      return @[action_1,action_2,action_3];
     }
二、UITableViewController
1.UITableViewController继承自UIViewController,自带一个tableView
2.self.view不是UIView而是UITableView
3.datasource和delegate默认都是self(UITableViewController)
4.开发之需要建立UITableViewController子类
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容