tableView的编辑模式

表视图可以进入编辑模式,当进入编辑模式就可以进行删除、插入、移动单元等操作

 效果图:

  

让表视图进入编辑模式,进入编辑模式的方法有两种,一种是使用导航栏的edit

按钮,另一种是设置tableView的editing属性进入编辑模式。

最后通过实现UITableViewDataSource协议的方法实现单元格的删除、插入和移动

1,在viewDidLoad方法里面指定导航栏的右按钮为edit按钮

self.navigationItem.rightBarButtonItem =self.editButtonItem;

2,另一种进入编辑模式的方式是修改tableView的editing属性

该属性是一个BOOL类型,默认值是NO,这里给导航栏添加一个左按钮,通过点击左按钮修改editing属性的值

进入和退出编辑模式

- (void)editTableView:(UIBarButtonItem *)button

{

  //修改editing属性的值,进入或退出编辑模式

[self.tableView setEditing:!self.tableView.editinganimated:YES];

  if(self.tableView.editing){

   button.title = @"完成";

  }

  else{

  button.title = @"编辑";

}

}

实现删除和插入行

  两方法一响应

方法一:那些行进入编辑模式

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

方法二:进入编辑模式的cell是删除还是增加

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

{

return UITableViewCellEditingStyleDelete;

}

注意:这个方法里一般返回两种类型,还有一中默认类型

删除:UITableViewCellEditingStyleDelete

增加:UITableViewCellEditingStyleInsert

响应:点击当点击delete后执行的删除过程

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

  //删除数据源里的数据

  [self.array removeObjectAtIndex:indexPath.row];

  //再删除tableView中对应的行

[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];

}

注意:先除数据源里的数据,删除tableView中对应的行

实现移动行

 当tableView进入编辑模式之后,默认每一行都是可以移动,每一行尾部有一个图标

  为三行灰色横线的按钮,就是表示该行可以移动

一方法一响应

方法一:那些cell可以移动

-(BOOL)tableView:(UITableView *)tableView

canMoveRowAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

响应:移动的具体操作

- (void)tableView:(UITableView *)tableView

moveRowAtIndexPath:(NSIndexPath *)fromIndexPath

toIndexPath:(NSIndexPath *)toIndexPath

{

TRStudent *stu=self.array[fromIndexPath.row];

[self.array removeObjectAtIndex:fromIndexPath.row];

[self.array insertObject:stuatIndex:toIndexPath.row];

}

案例

AppDelegate.h

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end

AppDelegate.m

#import "AppDelegate.h"

#import"TRStudent.h"

#import "TRTableViewController.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

// Override point for customization after application launch.

self.window.backgroundColor = [UIColor whiteColor];

TRTableViewController *tr1=[[TRTableViewController alloc] initWithNibName:@"TRTableViewController" bundle:nil];

UINavigationController *navi=[[UINavigationController alloc] initWithRootViewController:tr1];

self.window.rootViewController=navi;

[self.window makeKeyAndVisible];

return YES;

}

@end

TRTableViewController.h

#import <UIKit/UIKit.h>

@interface TRTableViewController : UITableViewController

@property(nonatomic,strong) NSMutableArray *array;

@end

TRTableViewController.m

#import "TRTableViewController.h"

#import "TRStudent.h"

@interface TRTableViewController ()

@end

@implementation TRTableViewController

-(id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil

{

return self=[super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];

}

- (void)viewDidLoad

{

[super viewDidLoad];

self.array=[TRStudent getarray];

self.navigationItem.rightBarButtonItem=self.editButtonItem;

}

//有多少分区

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

return 1;

}

//有多少个cell单元

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

return self.array.count;

}

//cell单元

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

if(cell==nil)

{

cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];

}

TRStudent *stu=self.array[indexPath.row];

cell.textLabel.text=stu.name;

return cell;

}

//那些行进入编辑模式,根据你的需求自行设置,我这里设置的全部

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

//进入编辑模式的cell是删除还是增加

//自行设置,我这里设置的是最后一个cell单元是增加,其他是删除

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView

editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

{

if(indexPath.row==self.array.count-1)

return UITableViewCellEditingStyleInsert;

return UITableViewCellEditingStyleDelete;

}

//点击当点击delete后执行的删除增加过程

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

if (editingStyle == UITableViewCellEditingStyleDelete) {

[self.array removeObjectAtIndex:indexPath.row];

[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];

} else if (editingStyle == UITableViewCellEditingStyleInsert) {

TRStudent *str2=[[TRStudent alloc] init];

str2.name=@"qwer";

str2.name=@"124456";

[self.array addObject:str2];

NSIndexPath *insetindexpath=[NSIndexPath indexPathForRow:self.array.count-1 inSection:0];

[tableView insertRowsAtIndexPaths:@[insetindexpath] withRowAnimation:UITableViewRowAnimationAutomatic];

}

}

//那些cell可移动

-(BOOL)tableView:(UITableView *)tableView

canMoveRowAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

//移动

- (void)tableView:(UITableView *)tableView

moveRowAtIndexPath:(NSIndexPath *)fromIndexPath

toIndexPath:(NSIndexPath *)toIndexPath

{

TRStudent *stu=self.array[fromIndexPath.row];

[self.array removeObjectAtIndex:fromIndexPath.row];

[self.array insertObject:stuatIndex:toIndexPath.row];

}

@end

TRStudent.h

#import <Foundation/Foundation.h>

@interface TRStudent : NSObject

@property(nonatomic,strong) NSString *name;

@property(nonatomic,strong) NSString *phone;

+(NSMutableArray *)getarray;

@end

TRStudent.m

#import "TRStudent.h"

@implementation TRStudent

+(NSMutableArray *)getarray

{

TRStudent *stu1=[[TRStudent alloc] init];

stu1.name=@"q";

stu1.phone=@"12345";

TRStudent *stu2=[[TRStudent alloc] init];

stu2.name=@"qqw";

stu2.phone=@"12345";

TRStudent *stu3=[[TRStudent alloc] init];

stu3.name=@"sdsq";

stu3.phone=@"12345";

NSMutableArray *mut=[[NSMutableArray alloc] init];

[mut addObject:stu1];

[mut addObject:stu2];

[mut addObject:stu3];

return mut;

}

@end

ios之UITableViewController(二) tableView的编辑模式的更多相关文章

  1. iOS UIKit:TableView之编辑模式(3)

    一般table view有编辑模式和正常模式,当table view进入编辑模式时,会在row的左边显示编辑和重排控件,如图 42所示的编辑模式时的控件布局:左边的editing control有表 ...

  2. 07-UIKit(tableview的编辑模式、accessoryView)

    目录: 一.tableview的编辑模式-增删改查 二.不使用继承创建tableview 三.accessoryView辅助视图 回到顶部 一.tableview的编辑模式-增删改查 [1-conta ...

  3. IOS开发学习笔记032-UITableView 的编辑模式

    UITableView 的三种编辑模式 1.删除 2.排序 3.添加 进入编辑模式,需要设置一个参数 - (IBAction)remove:(UIBarButtonItem *)sender { NS ...

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

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

  5. ios 继承UITableViewController,更改tableview样式

    // 继承UITableViewController,更改tableview样式 - (instancetype)initWithStyle:(UITableViewStyle)style { ret ...

  6. iOS开发UI篇-tableView在编辑状态下的批量操作(多选)

    先看下效果图 直接上代码 #import "MyController.h" @interface MyController () { UIButton *button; } @pr ...

  7. iOS 中UITableViewController 中tableView 会被状态栏覆盖的问题

    解决办法在 生命周期函数viewDidAppear中设置即可 - (void)viewDidAppear:(BOOL)animated { self.tableView.frame = CGRectM ...

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

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

  9. UITableView编辑模式大全解

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

随机推荐

  1. 《Java虚拟机原理图解》 1.2、class文件里的常量池

    [最新更新:2014/11/11]  了解JVM虚拟机原理 是每个Java程序猿修炼的必经之路. 可是因为JVM虚拟机中有非常多的东西讲述的比較宽泛.在当前接触到的关于JVM虚拟机原理的教程或者博客中 ...

  2. swift 3.0基本数据语法

    swift 3.0 字符串的介绍 OC和Swift中字符串的区别 在OC中字符串类型时NSString,在Swift中字符串类型是String OC中字符串@"",Swift中字符 ...

  3. pg viedio

    http://blog.163.com/digoal@126/blog/static/16387704020141229159715/

  4. [原创]Microsoft.AnalysisServices.ManagementDialogs.ServerPropertiesLanguagePanel 的类型初始值设定项引发异常

    问题: 安装SQL SERVER 2012 SP1后,有可能在右键AS服务器想打开属性面板时候会出现如下错误:   解决: 这个需要安装相应的热修复补丁470544 相应文章: http://smal ...

  5. JavaEE&Docker 容器示例

    准备:jboss.jdk.一个javaee的war包.Dockerfile 注:jboss和jdk可以不用提前准备好,在命令中wget也可以,因为我恰好有,就直接复制了 Dockerfile内容: # ...

  6. SQL Server三种表连接原理

    在SQL Server数据库中,查询优化器在处理表连接时,通常会使用一下三种连接方式: 嵌套循环连接(Nested Loop Join) 合并连接 (Merge Join) Hash连接 (Hash ...

  7. Javascript教程:AngularJS的五个超酷特性

    AngularJS是一个超棒的javascript框架,不单单对于开发人员来说非常有吸引力,对于UI设计师来说也同样出色.在这篇教程中,我们将简单的介绍AngularJS几个重量级必备特性,并且介绍它 ...

  8. Access to the path '' is denied.解决方案

    在本地测试正常,但一上传到服务器上的时候,那个就提示Access to the path ‘路径’ is denied.我在网上找了很多资料,最后终于解决了,原来是因为在该文件的上级文件夹没有修改权限 ...

  9. 【阿里云产品公测】OTS使用之简单线上产品实践基于PythonSDK

    阿里云用户:morenocjm 实践是检验真理的唯一标准,学习技术需要通过实践过程中的不断尝试,才能够快速掌握要领.OTS是构建在阿里云飞天分布式系统之上的NoSQL数据库服务,提供海量结构化数据的存 ...

  10. Android小项目之七 应用程序的更新安装

    ------- 源自梦想.永远是你IT事业的好友.只是勇敢地说出我学到! ---------- 按惯例,写在前面的:可能在学习Android的过程中,大家会和我一样,学习过大量的基础知识,很多的知识点 ...