gpt4 book ai didi

ios - UITableView的reloadRowsAtIndexPaths : seems to break insertRowsAtIndexPaths:

转载 作者:行者123 更新时间:2023-12-01 22:43:40 25 4
gpt4 key购买 nike

我有一个UITableView,用户可以在其中插入新行。发生这种情况时,我想重新加载表中的所有旧行。一种解决方案是在插入发生后立即调用 reloadData,这完全有效,但这意味着我看不到插入动画。

因此,当用户点击“添加行”按钮时,我会对除刚刚插入的索引路径之外的每个索引路径调用 reloadRowsAtIndexPaths: 。然后我仅使用新插入的行调用 insertRowsAtIndexPaths: 。合理吧?

这会导致应用程序崩溃,原因如下:

Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (1) must be equal to the number of rows contained in that section before the update (0), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).

正如您在本例中看到的,即使向 reloadRowsAtIndexPaths 传递了一个空的索引路径数组,也会发生这种情况。

啊!我需要用 beginUpdatesendUpdates 包装这两个调用。很公平。但现在动画完全被破坏了。

我正在使用 UITableViewRowAnimationFade 执行重新加载,并使用 UITableViewRowAnimationAutomatic 执行插入。但在动画过程中,每一行的高度都会发生变化,产生这种奇怪的闪烁效果,看起来很糟糕。动画这些变化的正确方法是什么?

编辑:

来自 reloadRowsAtIndexPaths:withRowAnimation: 的文档:

Reloading a row causes the table view to ask its data source for a new cell for that row. The table animates that new cell in as it animates the old row out. Call this method if you want to alert the user that the value of a cell is changing. If, however, notifying the user is not important—that is, you just want to change the value that a cell is displaying—you can get the cell for a particular row and set its new value.

我认为,在我的应用程序中,手动更新每个单元格是正确的方法。然而,我仍然对这个奇怪的动画错误感到不安,并且想知道它的原因是什么/如果我“想提醒用户单元格的值正在改变”我会做什么。

最佳答案

正如文档所说,出现该错误的一个常见原因是,数据源被要求提供一个单元格。可能不太清楚的是,它被要求两次......一次提供初始数据,再次提供最终数据。这意味着 tableView:numberOfRowsInSection: 方法必须在 beginUpdates 之前返回旧值,在 endUpdates 之后返回新值(或者如果您使用快捷方法,则在调用之前和之后)。如果相关,也不要忘记 numberOfSectionsInTableView。

示例:

    numberOfRows... return [array count];

// Incorrect
[array addObject:object];
[tableView beginUpdates];
[tableView insertRow..];
[tableView endUpdates];

// Correct
[tableView beginUpdates];
[array addObject:object];
[tableView insertRow..];
[tableView endUpdates];

对于您的具体情况,我建议进行插入,然后在整个表格 View 上调用 reloadData,只要这不会扰乱您的动画或其他任何内容。

关于ios - UITableView的reloadRowsAtIndexPaths : seems to break insertRowsAtIndexPaths:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9962275/

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