objective-c – 是否可以在tableview中移动一个部分

前端之家收集整理的这篇文章主要介绍了objective-c – 是否可以在tableview中移动一个部分前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在tableview中移动部分.我用Google搜索了我没有找到任何关于此的文件.任何文档或示例代码都会有所帮助.
谢谢

解决方法

您在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

猜你在找的Xcode相关文章