iPhone:UITableView重新排序行

时间:2012-04-02 11:51:20

标签: iphone

UITableView中有一个编辑模式,可以让用户重新排序行。要重新排序行,用户应单击并拖动编辑按钮(3条纹)。当用户触摸行时,是否有可能重新排序行,而不仅仅是编辑按钮???感谢...

1 个答案:

答案 0 :(得分:0)

您可以通过编程方式对行进行重新排序(在iOS 5中,您还可以对整个部分进行重新排序)。您只需要知道用户打算将行/部分移动到哪里即可。您需要使用方法

- (void)moveRowAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath

- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection

分别