iOS UITableView 拖動排序的實現
UITbableView作為列表展示資訊,除了展示的功能,有時還會用到刪除,排序等功能,下面就來講解一下如何實現排序。
排序是當表格進入編輯狀態後,在單元格的右側會出現一個按鈕,點選按鈕,就可以拖動單元格,移動位置,進行手動排序。
使用系統自帶拖動排序功能的步驟:
1、讓tableView進入編輯狀態,也就是設定它的editing為YES
2、返回編輯模式,也就是實現UITableViewDelegate中的tableview:editingStyleForRowAtIndexPath:方法,在裡面返回UITableViewCellEditingStyleNone模式。如果不實現,預設返回的就是刪除模式
3、實現tableView:moveRowAtIndexPath:toIndexPath方法,只要實現該方法,就能實現單元格的拖動排序,但只是實現了表面的排序,並沒有修改真實地資料
4、在方法中完成資料模型的更新
程式碼:
// ViewController.m // JRTableView刪除 // // Created by jerehedu on 15/6/11. // Copyright (c) 2015年 jerehedu. All rights reserved. // #import "ViewController.h" #import "Goods.h" @interface ViewController ()<UITableViewDataSource, UITableViewDelegate> { UITableView *_tableView; //列表 NSMutableArray *_goodsAry; //商品陣列 UIButton *_editBtn; //編輯按鈕 } @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; //新增標題 UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 20, self.view.frame.size.width, 44)]; titleLabel.text = @"購物車"; titleLabel.textAlignment = NSTextAlignmentCenter; titleLabel.backgroundColor = [UIColor redColor]; titleLabel.textColor = [UIColor whiteColor]; [self.view addSubview:titleLabel]; //新增編輯按鈕 _editBtn = [UIButton buttonWithType:UIButtonTypeCustom]; _editBtn.frame = CGRectMake(self.view.frame.size.width-60, 25, 50, 34); [_editBtn setTitle:@"編輯" forState:UIControlStateNormal]; [_editBtn setTitle:@"完成" forState:UIControlStateSelected]; _editBtn.titleLabel.font = [UIFont systemFontOfSize:15]; _editBtn.backgroundColor = [UIColor colorWithRed:0.8 green:0.8 blue:0.8 alpha:0.5]; [self.view addSubview:_editBtn]; [_editBtn addTarget:self action:@selector(clickEditBtn:) forControlEvents:UIControlEventTouchUpInside]; //新增tableview _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height-64)]; _tableView.dataSource = self; _tableView.delegate = self; [self.view addSubview:_tableView]; //取資料 NSArray *ary = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"ShoppingGoodsList" ofType:@"plist"]]; //把資料存到模型物件中,然後把物件存到陣列中 _goodsAry = [NSMutableArray array]; for (int i=0; i<ary.count; i++) { Goods *good = [Goods goodsWithDic:ary[i]]; [_goodsAry addObject:good]; } } #pragma mark 資料來源 返回有幾行 -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return _goodsAry.count; } #pragma mark 每行顯示內容 -(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *idGood = @"goods"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:idGood]; if (cell==nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:idGood]; } Goods *good = _goodsAry[indexPath.row]; cell.imageView.image = [UIImage imageNamed:good.icon]; cell.textLabel.text = good.name; cell.detailTextLabel.text = good.details; cell.detailTextLabel.numberOfLines = 6; cell.detailTextLabel.textColor = [UIColor brownColor]; return cell; } #pragma mark 選中行 -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // 取消選中狀態 [tableView deselectRowAtIndexPath:indexPath animated:YES]; } #pragma mark 設定行高 -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return 110; } #pragma mark 點選編輯按鈕 - (IBAction)clickEditBtn:(UIButton *)sender { //設定tableview編輯狀態 BOOL flag = !_tableView.editing; [_tableView setEditing:flag animated:YES]; _editBtn.selected = flag; } #pragma mark 選擇編輯模式,新增模式很少用,預設是刪除 -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { return UITableViewCellEditingStyleNone; } #pragma mark 排序 當移動了某一行時候會呼叫 //編輯狀態下,只要實現這個方法,就能實現拖動排序 -(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath { // 取出要拖動的模型資料 Goods *goods = _goodsAry[sourceIndexPath.row]; //刪除之前行的資料 [_goodsAry removeObject:goods]; // 插入資料到新的位置 [_goodsAry insertObject:goods atIndex:destinationIndexPath.row]; } @end
相關文章
- 仿知乎拖動廣告的實現iOSiOS
- iOS開發之UITableView聯動實現城市選擇器iOSUIView
- iOS使用UITableView實現的富文字編輯器iOSUIView
- vueusejs實現拖動VueJS
- UITableView的代理方法,實現編輯、刪除、排序、多選UIView排序
- iOS UITableView上下滑動控制底部按鈕出現iOSUIView
- Laravel-nova 增加拖動排序Laravel排序
- JS實現拖動div層移動JS
- C#實現窗體拖動、不允許窗體拖動、任意控制元件執行時拖動C#控制元件
- Swift iOS: UITableView的使用SwiftiOSUIView
- iOS-UITableView行高自動計算iOSUIView
- js實現的div拖動效果例項程式碼JS
- 使用easydrag實現可拖動的DIV彈出框
- Jquery實現滑鼠拖動改變div高度jQuery
- (精華)2020年7月18日 vue element-ui實現表格拖動排序VueUI排序
- iOS Swift UITableView的scrollToRow的”坑”iOSSwiftUIView
- iOS Swift UITableView的scrollToRow的"坑"iOSSwiftUIView
- 拖動滾動條實現內容自動載入效果
- 使用RxJava實現ImageView的拖動、旋轉和縮放RxJavaView
- js實現的拖動改變視窗大小功能JS
- ios Coredata 關聯 UITableView 資料自動更新iOSUIView
- UITableview巢狀UITableView案例實踐(仿淘寶商品詳情頁實現)UIView巢狀
- 拖動滾動條實現側欄導航定位效果
- jQuery實現的自定義可以拖動的彈出層效果jQuery
- QT實現可拖動自定義控制元件QT控制元件
- js拖動實現左右圖片對比效果JS
- Qt實現遮罩效果並可以拖動伸縮QT遮罩
- flutter好用的輪子推薦十-flutter拖動排序元素Flutter排序
- 直播帶貨app原始碼,實現移動端的按鈕拖動APP原始碼
- iOS UITableView 修改屬性iOSUIView
- iGoogle的模組拖動層拖動Go
- html隨意拖動內容位置的兩種實現方式HTML
- jQuery實現的拖動調整表格td單元格的大小jQuery
- UITableView基礎[ 5 ] 右側索引的實現UIView索引
- UITableView的原理——探究及重新實現程式碼UIView
- 小程式上是實現拖動懸浮圖示
- iOS開發-UITableView的重用機制iOSUIView
- react專案中實現元素的拖動和縮放例項React