reloadSections的麻烦:withRowAnimation动画

时间:2012-05-15 02:37:02

标签: ios xcode uitableview reloaddata

我有一个带有两个部分的UITableView(顶部和底部)。当物品被"检查时#34;在顶部(第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];

我应该如何编写这个以获得流畅的动画?

编辑:

我发现了问题。应该以这种方式写出来:

//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。

2 个答案:

答案 0 :(得分:7)

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

// 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];

答案 1 :(得分:4)

为什么需要在函数末尾重新加载guestList的数据?您已经在重新加载所需的部分了...尝试删除它并再次检查。