我想更改表格视图中的单元格顺序
我正在使用以下代码
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
[tableView moveRowAtIndexPath:path1 toIndexPath:path2];
}
这里path1
是用户现在选择的行的索引路径,我想找到用户删除该单元格的行的索引路径,那么我怎样才能找到 toIndexPath(path2)。