4

我想在表格视图中移动部分。我用谷歌搜索了这个我没有找到任何关于那个的文件。任何文档或示例代码都会有所帮助。谢谢

4

1 回答 1

1

您在 UITableView 类中有这些功能:

– insertSections:withRowAnimation:
– deleteSections:withRowAnimation:
– moveSection:toSection:

它们在官方 API 文档中有详细记录:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableView_Class/Reference/Reference.html#//apple_ref/occ/instm/UITableView/moveSection:toSection

于 2012-06-01T09:03:56.593 回答