gpt4 book ai didi

iphone - 在 UITableView 中移动行

转载 作者:行者123 更新时间:2023-12-03 20:19:37 27 4
gpt4 key购买 nike

我有一个包含 3 个部分的 UITableView,在编辑模式下可以更改该部分内的行位置而不是另一个部分?实际上我可以将单元格移动到任何部分。

谢谢

最佳答案

许多正确答案,但没有人给出完整且精心呈现的答复。

使用 TableView 委托(delegate)方法tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:,如下所示。

- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath
{
if (proposedDestinationIndexPath.section != sourceIndexPath.section)
{
return sourceIndexPath;
}

return proposedDestinationIndexPath;
}

不要忘记在您的 tableView:moveRowAtIndexPath:toIndexPath: 数据源方法中再次进行检查,如下所示,您不希望在以下情况下运行应用程序逻辑:目的地与源相似。

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath  *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
if(sourceIndexPath == destinationIndexPath)
{
return;
}

//application logic
}

关于iphone - 在 UITableView 中移动行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6073373/

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