单元格删除、插入、移动

import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIButton *delete;

@property (weak, nonatomic) IBOutlet UISwitch *mutable;

@property (weak, nonatomic) IBOutlet UISwitch *switchUI;

@property (weak, nonatomic) IBOutlet UITextField *tf;

@property (nonatomic,strong)NSMutableArray *datalist;

@property (weak, nonatomic) IBOutlet UITableView *tableView;

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

//获取所有字体名称

_datalist = [NSMutableArray arrayWithArray:[UIFont familyNames]];

_tableView.dataSource = self;

_tableView.delegate = self;

_tf.hidden = YES;

//允许 在编辑模式中多选

//    _tableView.allowsMultipleSelectionDuringEditing = NO;

}

//多选删除

- (IBAction)delete:(UIButton *)sender {

//0.获取所选择的所有单元格的索引

NSArray *selectIPS = [_tableView indexPathsForSelectedRows];

//1.删除数据 -> 倒序删除

for (NSInteger i = selectIPS.count-1; i>=0; i--) {

NSIndexPath *ip = [selectIPS objectAtIndex:i];

[_datalist removeObjectAtIndex:ip.row];

}

//2.删除单元格

[_tableView deleteRowsAtIndexPaths:selectIPS withRowAnimation:UITableViewRowAnimationFade];

}

- (IBAction)editAction:(UIButton *)sender {

sender.selected = !sender.selected;

//编辑模式中 允许多选

_tableView.allowsMultipleSelectionDuringEditing = _mutable.on;

//切换编辑模式

//    _tableView.editing = sender.selected;

//切换编辑模式 附动画

[_tableView setEditing:sender.selected animated:YES];

//编辑模式中 输入框显示 否则隐藏

_tf.hidden = !_tableView.editing;

//编辑模式中 开关 不可用

_switchUI.enabled = !_tableView.editing;

_mutable.enabled = !_tableView.editing;

}

#pragma mark --UITableViewDataSource

//是否开启单元格的移动权限

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

return YES;

}

//是否开启单元格的编辑权限

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

if (indexPath.row == 0) {

return NO;

}

return YES;

}

//指定行的编辑模式

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

//如果开关打开 则进入插入模式

if (_switchUI.on == YES) {

return UITableViewCellEditingStyleInsert;

}

//UITableViewCellEditingStyleDelete

return UITableViewCellEditingStyleDelete;

}

//编辑模式: 点击的事件 1.删除

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

/**

typedef NS_ENUM(NSInteger, UITableViewCellEditingStyle) {

UITableViewCellEditingStyleNone,

UITableViewCellEditingStyleDelete,

UITableViewCellEditingStyleInsert

};

*/

if (editingStyle == UITableViewCellEditingStyleInsert) {

//当输入框内容为空时不添加

if (_tf.text.length == 0) {

return;

}

//0.获取row和内容

NSString *content = _tf.text;

//1.插入数据

//插入的数据在下面

//NSInteger row = indexPath.row+1;

[_datalist insertObject:content atIndex:indexPath.row];

//2.插入单元格

//插入的数据在下面

//NSIndexPath *ip = [NSIndexPath indexPathForRow:indexPath.row +1 inSection:0];

[_tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];

}

if (editingStyle == UITableViewCellEditingStyleDelete) {

//1.删除数据

[_datalist removeObjectAtIndex:indexPath.row];

//2.删除单元格

/**

*

typedef NS_ENUM(NSInteger, UITableViewRowAnimation) {

UITableViewRowAnimationFade,

UITableViewRowAnimationRight,          // slide in from right (or out to right)

UITableViewRowAnimationLeft,

UITableViewRowAnimationTop,

UITableViewRowAnimationBottom,

UITableViewRowAnimationNone,            // available in iOS 3.0

UITableViewRowAnimationMiddle,          // available in iOS 3.2.  attempts to keep cell centered in the space it will/did occupy

UITableViewRowAnimationAutomatic = 100  // available in iOS 5.0.  chooses an appropriate animation style for you

};

*/

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

}

}

//编辑模式: 移动的事件

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{

//NSLog(@"起点索引:%@ 终点索引:%@",sourceIndexPath,destinationIndexPath);

NSLog(@"起点索引:%ld 终点索引:%ld",sourceIndexPath.row,destinationIndexPath.row);

//1⃣️从上方向下移动

if (sourceIndexPath.row < destinationIndexPath.row) {

//1.通过SIP获取要移动的元素

id sid = _datalist[sourceIndexPath.row];

//2.将元素插入到DIP+1的位置

[_datalist insertObject:sid atIndex:destinationIndexPath.row+1];

//3.删除SIP的元素

[_datalist removeObjectAtIndex:sourceIndexPath.row];

}

//2⃣️自下方向上移动

if (sourceIndexPath.row > destinationIndexPath.row) {

//1.通过SIP获取要移动的元素

id sid = _datalist[sourceIndexPath.row];

//2.将元素插入到DIP的位置

[_datalist insertObject:sid atIndex:destinationIndexPath.row];

//3.删除SIP+1的元素

[_datalist removeObjectAtIndex:sourceIndexPath.row];

}

}

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

return _datalist.count;

}

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

static NSString *identy = @"cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identy];

if (cell == nil) {

cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identy];

}

cell.textLabel.text = [_datalist objectAtIndex:indexPath.row];

return cell;

}

@end

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

推荐阅读更多精彩内容

  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 8,978评论 3 38
  • #pragma mark someValueAboutTableView 1.tableView的样式:UITab...
    潇岩阅读 877评论 0 0
  • 前言 最近忙完项目比较闲,想写一篇博客来分享一些自学iOS的心得体会,希望对迷茫的你有所帮助。博主非科班出身,一些...
    GitHubPorter阅读 1,411评论 9 5
  • 立冬了,你说 白色的梦从北国草原升腾 一路南下 听铁骑铮铮,如沧浪之水 珠江岸边的城依旧 绿成一片湖 温暖入心的日...
    风客阅读 281评论 15 8
  • 放下你的浮躁, 放下你的懒惰, 放下你的三分钟热度, 放空你禁不住诱惑的大脑, 放开你容易被任何事物吸引的眼睛, ...
    Fab燕燕阅读 217评论 0 0