码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发学习之#表视图#(3)移动行

时间:2014-12-01 17:42:57      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:ios   表视图   移动行   

继续上篇接下来介绍移动行:移动行我们用

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

(UITableView *)tableView用来指定表视图,(NSIndexPath *)sourceIndexPath用来指定要移动行的索引路径,(NSIndexPath *)destinationIndexPath用来指定行移动到目标位置的索引路径
核心代码:
<pre name="code" class="objc">//移动行
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
    NSInteger fromRow = [sourceIndexPath row];
    NSInteger toRow = [destinationIndexPath row];
    id object = [a objectAtIndex:fromRow];
    [a removeObjectAtIndex:fromRow];
    [a insertObject:object atIndex:toRow];
}





iOS开发学习之#表视图#(3)移动行

标签:ios   表视图   移动行   

原文地址:http://blog.csdn.net/u010710758/article/details/41649071

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!