objective-c – 使用动画以编程方式重新排序UITableView行

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

通过实现UITableView委托和数据源方法,因为它是provided in apple documentation.

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

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

我在this grocery list app看过这个功能.

我想用动画重新排序.

最佳答案 查看UITableView参考.

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

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