使用动画将uitableview单元格移动到顶部

时间:2014-03-11 14:56:16

标签: ios objective-c uitableview xcode5

简单,我是新手!

所以我有一个uitableview,其中包含可以从Web服务更改的每个单元格中的内容。

我需要在视觉上显示任何单元格中的某些内容发生变化。所以我希望当一个单元格的内容发生变化时,将一个特定的单元格移动到顶部...动画!

这可能吗?怎么可以呢?

2 个答案:

答案 0 :(得分:6)

无法以编程方式移动行。

但是,您可以同时插入和删除行来模拟移动。

[tableView beginUpdates];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:rowToMove]
                 withRowAnimation:UITableViewRowAnimationLeft];
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPathToMoveTo]
                 withRowAnimation:UITableViewRowAnimationLeft];
// update your dataSource as well.
[tableView endUpdates];

答案 1 :(得分:6)

之前选择的答案可能是正确的,但是从iOS 5开始,你可以这样做:

[tableView moveRowAtIndexPath:indexPathOfRowToMove toIndexPath:indexPathOfTopRow];