我正在尝试允许移动相同tableView
部分的行,否则我希望已移动的行返回其先前的位置。
我试过了:
[tableView moveRowAtIndexPath:toIndexPath toIndexPath:fromIndexPath];
[tableView reloadSections:[NSIndexSet indexSetWithIndex:fromRow] withRowAnimation:UITableViewRowAnimationNone];
[tableView reloadSections:[NSIndexSet indexSetWithIndex:toRow] withRowAnimation:UITableViewRowAnimationNone];
但不幸的是,它无法正常工作。