博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
移动cell的位置
阅读量:5289 次
发布时间:2019-06-14

本文共 658 字,大约阅读时间需要 2 分钟。

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView  editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{    return UITableViewCellEditingStyleNone;}//移动行-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{    NSInteger fromRow = [sourceIndexPath row];            //获取需要移动的行    NSInteger toRow = [destinationIndexPath row];        //获取需要移动的位置    id object = [array objectAtIndex:fromRow];            //读取需要移动行的数据    [array removeObjectAtIndex:fromRow];    [array insertObject:object atIndex:toRow];}

 

转载于:https://www.cnblogs.com/developzhou/p/5044432.html

你可能感兴趣的文章
笔记70 Spring Boot快速入门(八)(重要)
查看>>
LeetCode 160 Intersection of Two Linked Lists
查看>>
瀑布流布局
查看>>
log4j教程 5、示例程序
查看>>
《Effective C#》读书笔记
查看>>
解决linux服务器上matplotlib中文显示乱码问题
查看>>
“新零售”个人理解
查看>>
win键盘映射成mac键盘
查看>>
妙色王因缘经
查看>>
Oracle之sql语句优化
查看>>
使用http-server开启一个本地服务器
查看>>
FineUIMvc随笔(3)不能忘却的回发(__doPostBack)
查看>>
Python【每日一问】04
查看>>
php CI框学习整理
查看>>
使用Netty,我们到底在开发些什么?
查看>>
hihocoder #1456 : Rikka with Lattice(杜教筛)
查看>>
基础数论复习
查看>>
Codeforces Round #429 (Div. 1) C. On the Bench(dp + 组合数)
查看>>
01.C#数据类型、排序、过滤(一章1.1-1.2)
查看>>
C++(笔)002
查看>>