如何禁止同一UITableView中不同部分的2个UITableViewCell之间的移动

时间:2010-08-28 11:09:55

标签: iphone uitableview

我有一个包含2个部分的UITableView。 可以移动同一部分中的UITableCell。 但我希望禁止在同一个UITableView的不同部分中的2个UITableViewCell之间的移动。 有可能吗?

欢迎任何通讯

由于

InterDev中

1 个答案:

答案 0 :(得分:0)

tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:

if (proposedDestinationIndexPath.section == sourceIndexPath.section)
    return sourceIndexPath;

这将导致行返回到它的源索引路径,如果它试图移动到的部分与它的原始索引路径不是同一部分