我有一个包含2个部分的UITableView。 可以移动同一部分中的UITableCell。 但我希望禁止在同一个UITableView的不同部分中的2个UITableViewCell之间的移动。 有可能吗?
欢迎任何通讯
由于
InterDev中
答案 0 :(得分:0)
在tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:
if (proposedDestinationIndexPath.section == sourceIndexPath.section)
return sourceIndexPath;
这将导致行返回到它的源索引路径,如果它试图移动到的部分与它的原始索引路径不是同一部分