gpt4 book ai didi

iphone - 在 TableView 中重新排序单元格时获取索引路径?

转载 作者:行者123 更新时间:2023-11-28 19:12:22 24 4
gpt4 key购买 nike

我想更改表格 View 中的单元格顺序

我正在使用以下代码

-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath  
{
[tableView moveRowAtIndexPath:path1 toIndexPath:path2];
}

这里 path1 用户现在选择的行的索引路径我想找到用户删除该单元格的行的索引路径,所以我怎样才能找到 toIndexPath(path2)。

最佳答案

我认为您对这个方法的用途感到困惑 - 这是 UITableViewDataSource 的回调函数,旨在通知数据模型表中的更改。来自文档:

Tells the data source to move a row at a specific location in the table view to another location.

The UITableView object sends this message to the data source when the user presses the reorder control in fromRow.

这意味着您在这里需要做的是确保您的模型(通常是数组)重新排列以与这些更改正确同步。

希望这能给你一个好的方向。

关于iphone - 在 TableView 中重新排序单元格时获取索引路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14584563/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com