gpt4 book ai didi

ios - reloadSections :withRowAnimation animation 问题

转载 作者:可可西里 更新时间:2023-11-01 05:04:49 27 4
gpt4 key购买 nike

我有一个包含两个部分(顶部和底部)的 UITableView。当顶部部分(第 0 部分)中的项目被“选中”时,我将它们移动到底部部分(第 1 部分),反之亦然。除了动画,一切都很好。

我正在使用以下应用程序,但行移动缓慢 - 我在其他应用程序中看到了更好的结果。我希望顶部的行在选中或未选中时干净地动画到底部......底部的行干净地动画到顶部。

// set the guests arrival status and use animation
[guestList beginUpdates];
if (!guest.didArrive) {
[guest setDidArrive:YES];
[guestList reloadSections:sectionIndexSet withRowAnimation:UITableViewRowAnimationBottom];
} else {
[guest setDidArrive:NO];
[guestList reloadSections:sectionIndexSet withRowAnimation:UITableViewRowAnimationTop];
}
[guestList endUpdates];

[guestList reloadData];

我应该如何编写代码以获得漂亮流畅的动画?

编辑:

我发现了问题。 could 应该这样写:

//NSIndexSet *sectionIndexSet = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, 1)];

// set the guests arrival status and use animation
[guestList beginUpdates];
if (!guest.didArrive) {
[guest setDidArrive:YES];
[guestList reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationBottom];
} else {
[guest setDidArrive:NO];
[guestList reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationTop];
}
[guestList endUpdates];
[guestList reloadData];

注意我注释掉的第一行。我最初忽略了添加这个。如您所见,我使用的是构造不当的 NSIndexSet。

最佳答案

问题解决了。请参阅编辑后的回复。代码应该是:

// set the guests arrival status and use animation
[guestList beginUpdates];
if (!guest.didArrive) {
[guest setDidArrive:YES];
[guestList reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationBottom];
} else {
[guest setDidArrive:NO];
[guestList reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationTop];
}
[guestList endUpdates];
[guestList reloadData];

关于ios - reloadSections :withRowAnimation animation 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10593493/

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