如何不允许在tableView中的不同部分之间移动一行?

时间:2011-11-04 20:26:20

标签: iphone objective-c ios uitableview

我正在尝试允许移动相同tableView部分的行,否则我希望已移动的行返回其先前的位置。

我试过了:

[tableView moveRowAtIndexPath:toIndexPath toIndexPath:fromIndexPath];      
[tableView reloadSections:[NSIndexSet indexSetWithIndex:fromRow] withRowAnimation:UITableViewRowAnimationNone];       
[tableView reloadSections:[NSIndexSet indexSetWithIndex:toRow] withRowAnimation:UITableViewRowAnimationNone];

但不幸的是,它无法正常工作。

0 个答案:

没有答案