gpt4 book ai didi

ios - 如何保存重新排列的表格 View 位置

转载 作者:行者123 更新时间:2023-11-28 21:59:05 28 4
gpt4 key购买 nike

我有一个表格 View ,可以通过按编辑并将单元格拖到新位置来重新排列。我遇到的问题是当应用程序关闭或您转到不同的 View Controller 然后返回 TableView 时,单元格已返回到其原始位置。这是我启用重新排列的代码:

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
[arrayData removeObjectAtIndex:fromIndexPath.row];
[arrayData removeObjectAtIndex:toIndexPath.row];
}

// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the item to be re-orderable.
return YES;

}

最佳答案

改变这个:

[arrayData removeObjectAtIndex:fromIndexPath.row];
[arrayData removeObjectAtIndex:toIndexPath.row];

像这样:

NSString *stringToMove /*or whatever*/ = [arrayData objectAtIndex:fromIndexPath.row];
[arrayData removeObjectAtIndex:fromIndexPath.row];
[arrayData insertObject:stringToMove atIndex:toIndexPath.row];

基本上,您不会重新插入数据,您只是将其删除。

为了在重新加载 View Controller 时保持顺序,您需要确保数组保存在某个地方。例如,可以将其保存到 plist 文件中。

引用:Apple docs

关于ios - 如何保存重新排列的表格 View 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25554639/

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