我非常了解如何使用“重新排序控制”来重新排序UITableView
行。
通过provided in apple documentation实现UITableView
委托和数据源方法。
但我想以编程方式获得相同的功能。
在更新行/单元格的情况下我需要这个我想根据更新时间或其他一些标准重新排序。
我在this grocery list app中看到了这个功能。
我想用动画重新排序。
答案 0 :(得分:2)
查看UITableView参考。
您可能想要使用这些方法:
– beginUpdates
– endUpdates
– insertRowsAtIndexPaths:withRowAnimation:
– deleteRowsAtIndexPaths:withRowAnimation:
– insertSections:withRowAnimation:
– deleteSections:withRowAnimation: