UITableView编辑 增删改查

@interface RootTableViewController ()

@property (nonatomic , retain) NSMutableArray *dataArray;
//用数组管理表视图将要显示的数据

@end

@implementation RootTableViewController

//新的重用机制格式
//1.定义全局区的静态重用标识符
static NSString *identifier = @"CELL";

//重写属性的getter方法
- (NSMutableArray *)dataArray{
    if (!_dataArray) {
        _dataArray = [[NSMutableArray alloc]init];
    }
    return _dataArray;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    //给数据源数组赋值
    [self.dataArray addObject:@"1"];
    [self.dataArray addObject:@"2"];
    [self.dataArray addObject:@"3"];
    [self.dataArray addObject:@"4"];
   
    
    //2.此方法是为对应的重用标识符注册单元格的类型,用于配合iOS6.0提供的新的出队列方法,我们应该先注册,再使用..----UITableViewCell这个是系统样式的Cell,如果以后用到了自定义Cell,在这里可以换上自定义cell的类名
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:identifier];
    //editButtonItem对应的响应方法内部会根据点击按钮的状态通过setEditing:animtated:方法来控制表视图是否进入编辑状态
     self.navigationItem.rightBarButtonItem = self.editButtonItem;
}

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

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
//#warning Potentially incomplete method implementation.
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
//#warning Incomplete method implementation.
    // Return the number of rows in the section.
    return [self.dataArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    //这是第三步
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];
    //forIndexPath:  这个参数,再使用if(cell == nil)判断的时候,不要写。
    
    cell.textLabel.text = self.dataArray[indexPath.row];
    
    
    // Configure the cell...
    
    return cell;
}

// Override to support conditional editing of the table view.
//第一步:询问能否进入编辑状态
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    // Return NO if you do not want the specified item to be editable.
    //重写此协议方法可以让表视图根据条件进行编辑,如果是某一行不想被编辑,可以通过判断来return NO;
    
    //此协议方法是第一个被调用的,当表视图进入编辑状态的时候通过此方法的返回值来确定对应行是否进入编辑状态
    
    if (indexPath.row == 0) {
        return NO;
    }
    return YES;
}

//指定单元格的编辑样式
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    if (indexPath.row == self.dataArray.count - 1) {
        return UITableViewCellEditingStyleInsert;
    }
    //也是为对应的行指定其编辑格式
    return UITableViewCellEditingStyleDelete;
}

// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    //第二步:通过deleagte协议方法为对应行指定其编辑格式
    if (editingStyle == UITableViewCellEditingStyleDelete) {
//        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
        //1.如果删除数据,需要先删除对应行的数据
        //2.再将对应行的单元格从表视图中删除
        //开始删除
        [self.dataArray removeObjectAtIndex:indexPath.row];
        //然后开始删除单元格
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];
        

        
    } else if (editingStyle == UITableViewCellEditingStyleInsert) {
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
        //1.先在数组中插入对应的对象
        //2.创建对应对象的indexPath
        //3.根据indexPath在表视图中插入行
        
        //开始
        [self.dataArray addObject:@"2"];
        NSIndexPath *insterPath = [NSIndexPath indexPathForRow:self.dataArray.count - 1 inSection:0];//这里面的数据都是下标,从0开始
        
        [tableView insertRowsAtIndexPaths:@[insterPath] withRowAnimation:UITableViewRowAnimationTop];
        
        
        
    }   
}

// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
    //当通过拖拽将对应行移动到目标位置时会响应此方法,该方法是通过两个对应的indexPath去修改数据源数组中的数据
    //具体实现<内存平衡>
    id targetObj = [self.dataArray [fromIndexPath.row] retain];
    [self.dataArray removeObject:targetObj];
    [self.dataArray insertObject:targetObj atIndex:toIndexPath.row];
    [targetObj release];
    NSLog(@"%@" , self.dataArray);
    
    
    
    
}

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {

    
    return YES;
}

时间: 2024-10-12 20:42:02

UITableView编辑 增删改查的相关文章

VUE2.0增删改查附编辑添加model(弹框)组件共用

Vue实战篇(增删改查附编辑添加model(弹框)组件共用) 前言 最近一直在学习Vue,发现一份crud不错的源码 预览链接 https://taylorchen709.github.io/vue-admin/#/login 自己下载下来后仔细研究了起来,发现编辑和增加写了两个弹框,我觉得这不符合vue的组件原则,于是自己把编辑和添加改成共用的 因为也是纯粹的写写前端页面,所以数据方面用的是mock.js,真实的模拟请求. 这个项目用到的 技术栈: vue + webpack + vuex +

ssm框架搭建+easyui增删改查实现

闲来无事,看了看别人的博客文档也跟着敲了敲,特地记录下来,方便以后学习: spring版本:4.0.6 mybatis版本:3.2.5 所有jar包打包下载:http://pan.baidu.com/s/1qLEaU 1.项目目录结构 其中,controller包下存放控制层文件,dao下存放各个model类相关的数据库操作接口,entity下放置各种model类,mappers下放置各个dao对应的映射文件,service服务层就不说了,放置各种service接口,impl是其具体实现类. 2

夺命雷公狗---Thinkphp----12之文章的增删改查(图片上传和关联查询)

我们由于表分析的不够完善,所以我们来加多一个tid的字段,到时候主要目的是为了更好的遍历出文章是属于那个分类下的,表如下所示: 那么下一步我们就开始创建一个ArticleController.class.php的控制器,用来管理文章的增删改查操作,所以我们开始第一步来实现文章的添加,我们先来实现他的增加功能: public function add(){ if(IS_POST){ $data['title'] = I('title'); $data['tid'] = I('tid'); $dat

javascript生成表格增删改查 JavaScript动态改变表格单元格内容 动态生成表格 JS获取表格任意单元格 javascript如何动态删除表格某一行

jsp页面表格布局Html代码 <body > <center> <input type="text" value="111" id="mytext"> <table border="1" width="60%" id="mytable"> <tr> <td id="td1">第一行第一列<

浅谈增删改查的意义

从事开发一年以来,基本上都是在做一系列“增删改查”的功能,看似最简单的增删改查,却在所有的信息管理系统中发挥着最关重要的作用. 这一年的软件开发之旅,让我觉得开发是一件特别简单的事,无非就是一个界面上数据的增删改查,它可能就是针对一张单表的操作,了不起就是对几张表的增删改,so easy! 最近是越发感受到:信息管理系统的精髓,除了数据库设计外,就是“无比简单”的增删改查了! 为何这样说,其实跟随数据的轨迹,就能明白,任何一张表的数据都是“增”进来的,那么如何增?手动一条条录入是个不错的选择,可

BootStrap DataTables Spring MVC简单增删改查实例

1 <!DOCTYPE html> 2 <%@ page contentType="text/html;charset=gbk" language="java" %> 3 <%@page isELIgnored="false" %> 4 <meta name="viewport" content="width=device-width, initial-scale=1&quo

MVC+Bootstrap 企业通用框架搭建--左侧导航菜单的实现--导航菜单的增删改查(3)

补充上面的点击菜单表信息: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace SqlServer.Entity{ public class Menu_Operation { private int _operation_id; public int Operation_id { get { return

NET如何使用ELinq-实现增删改查

1 通过对ELinq主页的参考和学习,以及在项目中(wpf项目中用到的)中应用,ORM框架中的ELinq确实非常的强大,特此以建立wpf项目为例子来总结下如何在项目中应用ELinq,要想使用这个框架首先就应该添加对框架的应用,如何添加呢? 1)在工具下拉菜单中找到NuGet程序包管理器(英文名NuGet package manage ),在NuGet程序包管理器下拉菜单中找到程序包管理器控制台(英文名package manage console)成功之后将会出现如下的界面 然后将程序源包改成al

2017-01-11小程序常规增删改查

小程序常规增删改查 1.以收货地址的增删改查为例 2.文件目录 js文件是逻辑控制,主要是它发送请求和接收数据, json 用于此页面局部 配置并且覆盖全局app.json配置, wxss用于页面的样式设置, wxml就是页面,相当于html 3.wxml代码 <form bindsubmit="addSubmit"> <view class="consignee"> <text class="consignee-tit&qu