使用动画以编程方式重新排序UITableView行

时间:2011-02-08 18:36:45

标签: objective-c uitableview

我非常了解如何使用“重新排序控制”来重新排序UITableView行。

通过provided in apple documentation实现UITableView委托和数据源方法。

但我想以编程方式获得相同的功能。

在更新行/单元格的情况下我需要这个我想根据更新时间或其他一些标准重新排序。

我在this grocery list app中看到了这个功能。

我想用动画重新排序。

1 个答案:

答案 0 :(得分:2)

查看UITableView参考。

您可能想要使用这些方法:

– beginUpdates
– endUpdates
– insertRowsAtIndexPaths:withRowAnimation:
– deleteRowsAtIndexPaths:withRowAnimation:
– insertSections:withRowAnimation:
– deleteSections:withRowAnimation: