UITableView可以分普通模式和Editing模式两种,这里我们着重讨论Editing模式,Editing模式中又分三种操作:Insert、Delete、 Reallocted。Insert和Delete针对数据源内容的修改,而Reallocated是针对数据源位置的修改。下面分别讨论。

一、Insert Or Delete

当UITableView接收到 setEditing:animated:时,它会将同样的消息转发给每一个可见行,大致会经历如下步骤,引用至官方:

  1. The table view invokes the tableView:canEditRowAtIndexPath: method if its data source implements it. This method allows the application to exclude rows in the table view from being edited even when their cell’s editingStyle property indicates otherwise. Most applications do not need to implement this method.

  2. The table view invokes the tableView:editingStyleForRowAtIndexPath: method if its delegate implements it. This method allows the application to specify a row’s editing style and thus the editing control that the row displays.

    At this point, the table view is fully in editing mode. It displays the insertion or deletion control for each eligible row.

  3. The user taps an editing control (either the deletion control or the insertion control). If he or she taps a deletion control, a Delete button is displayed on the row. The user then taps that button to confirm the deletion.

  4. The table view sends the tableView:commitEditingStyle:forRowAtIndexPath: message to the data source. Although this protocol method is marked as optional, the data source must implement it if it wants to insert or delete a row. It must do two things:

总结起来:

1、外部控件或委托向UITableView发送setEditing:方法,传入YES表示将要针对UITableView执行编辑操作

2、UITableView向其中的每一个UITableViewCell发送setEditing:方法,传入的参数取决于tableView:canEditRowAtIndexPath:

3、如果这一行确定进入EditingMode,UITableView向代理询问这一行的编辑样式,发送消息tableView:editingStyleForRowAtIndexPath:

4、根据EditingStyle显示相应的按钮,当用户点击那个editing按钮后,如果是删除按钮,系统会在右边显示该按钮以备再次向用户确认是否删除,当用户点击确认删除后,操作完成;如果是新增按钮,操作直接完成。

5、UITableView向代理发送 tableView:commitEditingStyle:forRowAtIndexPath:消息,告知代理用户已经完成操作,此处代码可以根据相应的业务逻辑来对数据源执行操作,操作完毕后调用UITableView的相关方法来更新cell。例如发送deleteRowsAtIndexPaths:withRowAnimation:消息告诉UITableView删除指定索引的行,发送insertRowsAtIndexPaths:withRowAnimation:消息告诉UITableView在指定位置新增行。

适用场景:

1、可以在用户点击加载更多时,批量新增多行。

二、Reallocted

Reallocted也是编辑模式下的一种,当UITableView接收到  setEditing:animated:方法时,也有机会进入Reallocated模式。这里引用官方的图片以及步骤:

When the table view receives the setEditing:animated: message, it resends the same message to the cell objects corresponding to its visible rows. After that, the sequence of messages is as follows:

  1. The table view sends a tableView:canMoveRowAtIndexPath: message to its data source (if it implements the method). In this method the delegate may selectively exclude certain rows from showing the reordering control.

  2. The user drags a row by its reordering control up or down the table view. As the dragged row hovers over a part of the table view, the underlying row slides downward to show where the destination would be.

  3. Every time the dragged row is over a destination, the table view sends tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath: to its delegate (if it implements the method). In this method the delegate may reject the current destination for the dragged row and specify an alternative one.

  4. The table view sends tableView:moveRowAtIndexPath:toIndexPath: to its data source (if it implements the method). In this method the data source updates the data-model array that is the source of items for the table view, moving the item to a different location in the array.

总结:

1、外部控件或委托向UITableView发送setEditing:方法,传入YES表示将要针对UITableView执行编辑操作

2、UITableView向其中的每一个UITableViewCell发送setEditing:方法,传入的参数取决于tableView:canMoveRowAtIndexPath:

3、用户通过reordering control拖拽某一行A,当拖拽到这个Table View的另一行B的上方时,B会被挤到下方显示。

4、每当拖拽到一个目标上方时,UITableView会发送tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:消息给代理,询问是否要这么移动,有没有需要修正的,此处可以用于重新定位,例如用户拖动到外部区域去了,下面会有个示例代码1.1。

5、UITableView最终向数据源DataSource对象发送 tableView:moveRowAtIndexPath:toIndexPath:消息,确定最终移动到哪里,通知它更改数据源并且修改更新UITableView中Cell的位置。

  1. - (NSIndexPath *)tableView:(UITableView *)tableView
  2.        targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath
  3.        toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath {
  4.    NSDictionary *section = [data objectAtIndex:sourceIndexPath.section];
  5.    NSUInteger sectionCount = [[section valueForKey:@"content"] count];
  6.    if (sourceIndexPath.section != proposedDestinationIndexPath.section) {
  7.        NSUInteger rowInSourceSection =
  8.             (sourceIndexPath.section > proposedDestinationIndexPath.section) ?
  9.               0 : sectionCount - 1;
  10.        return [NSIndexPath indexPathForRow:rowInSourceSection inSection:sourceIndexPath.section];
  11.    } else if (proposedDestinationIndexPath.row >= sectionCount) {
  12.        return [NSIndexPath indexPathForRow:sectionCount - 1 inSection:sourceIndexPath.section];
  13.    }
  14.    // Allow the proposed destination.
  15.    return proposedDestinationIndexPath;
  16. }

代码1.1

UITableView的编辑模式的更多相关文章

  1. 让UITableView进入编辑模式

    1.UITableView对象有一个editing属性,设为YES时,该对象会进入编辑模式(editing mode).表格视图进入编辑模式后,用户可以管理表格中得行,如改变行的排列顺序.增加行或删除 ...

  2. 应用程序之UITableView的编辑模式

    cell分层结构 效果展示 代码实现 一.cell的分层结构 二.效果展示 三.代码实现 // // ViewController.m // 01-TableView的删除实现 // // Creat ...

  3. UITableView编辑模式大全解

    1.UITableView 的编辑模式 进入编辑模式 代码体现 // 设置 editing 属性 tableView?.editing = true // 这个设置的时候是有动画效果的 tableVi ...

  4. IOS第七天(6:UiTableView编辑模式, 拖动位置 ,滑动删除)

    **********UiTableView编辑模式, 拖动位置 ,滑动删除 #import "HMViewController.h" @interface HMViewContro ...

  5. UITableView 编辑模式(增加-删除-移动---自定义左滑 title)

    - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typica ...

  6. UITableView编辑模式

    UITableView有两种模式,普通模式和编辑模式.在编辑模式下可以对cell进行排序.删除.插入等等. 如何进入编辑模式 调用tableView的setEditing(editing: Bool, ...

  7. UITableView 编辑模式(增加-删除-移动---自定义左滑 title) xib cell

    参考:  http://www.open-open.com/lib/view/open1430008922468.html - (void)viewDidLoad { [super viewDidLo ...

  8. iOS开发——UI进阶篇(四)tableView的全局刷新,局部刷新,左滑操作,左滑出现更多按钮,进入编辑模式,批量删除,自定义批量删除

    首先创建项目,在storyboard如下布局控件,设置好约束 然后创建cell模型类XMGWineCell数据模型类XMGWine创建UITableView,设置数据源协议,实现数据源方法懒加载数据这 ...

  9. IOS第13天(3,私人通讯录,登陆状态数据存储,数据缓存, cell的滑动删除,进入编辑模式,单个位置刷新 )

    *****联系人的界面的优化 HMContactsTableViewController.m #import "HMContactsTableViewController.h" # ...

随机推荐

  1. javascript keycode大全【转载】

    keycode    8 = BackSpace BackSpace keycode    9 = Tab Tabkeycode   12 = Clearkeycode   13 = Enterkey ...

  2. 利用procdump+Mimikatz 绕过杀软获取Windows明文密码(转)

    Mimikatz现在已经内置在Metasploit’s meterpreter里面,我们可以通过meterpreter下载.但是你如果觉得还要考虑杀毒软件,绑定payload之类的东西太过复杂,我们可 ...

  3. getDefinitionByName与ApplicationDomain.getDefinition

    主swf 定义:MC,被加载swf 定义:MC.MC1 ①父SWF的应用程序域的新建子域 (默认方式)称其为应用程序域的继承 var app:ApplicationDomain=new Applica ...

  4. Don't Repeat Yourself (不要重复你自己)

    DRY是指Don't Repeat Yourself特指在程序设计以及计算中避免重复代码,因为这样会降低灵活性.简洁性,并且可能导致代码之间的矛盾.<The Pragmatic Programm ...

  5. 【原创】测试不同浏览器播放canvas动画的平滑程度

    Canvas无疑是HTML5开放式网络平台最激动人心的技术之一.目前,除了IE8以外,各类浏览器的新版本都支持HTML5 Canvas. 程序员需要通过Javascript调用Canvas API.基 ...

  6. JAVA的StringBuffer类

    StringBuffer类和String一样,也用来代表字符串,只是由于StringBuffer的内部实现方式和String不同,所以StringBuffer在进行字符串处理时,不生成新的对象,在内存 ...

  7. java的集合类【转】

    在JDK API中专门设计了一组类,这组类的功能就是实现各种各样方式的数据存储,这样一组专门用来存储其它对象的类,一般被称为对象容器类,简称容器类,这组类和接口的设计结构也被统称为集合框架(Colle ...

  8. JavaScipt call和apply用法

    转:http://www.cnblogs.com/wupeng/p/3477879.html Javascript call与apply记录 [注]:记录自己对javascript中call与appl ...

  9. 使用导入导出进行备份和恢复OCR(10g)

    Oracle推荐在对集群调整时,比方添加.删除节点之前,应对OCR进行备份,能够用export备份到指定文件.假设做了replace或者restore等操作,Oracle建议使用cluvfy comp ...

  10. 如何在Ubuntu 13.04中升级到 GNOME 3.8

    如何在Ubuntu 13.04中升级到 GNOME 3.8 添加 GNOME 3 PPA(Personal Package Archives) 在你进一步浏览之前,确认你正在运行的是Ubuntu 13 ...