首页 > 代码库 > iOS开发学习之#表视图#(3)移动行
iOS开发学习之#表视图#(3)移动行
继续上篇接下来介绍移动行:移动行我们用
- (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)移动行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。