gpt4 book ai didi

ios - 通过 reloadData 更新 UITableView 时保持选择

转载 作者:可可西里 更新时间:2023-11-01 03:07:00 24 4
gpt4 key购买 nike

我正在尝试实现类似于 Apple 日历应用程序设置开始时间和结束时间 View 的 View 。我的视野看起来不错,但我遇到了两个问题。首先,我想自动选择第一行。我有点让这个工作使用:

NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:0];
[dateTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionBottom];

但是,动画显示,在加载 View 时直观地选择了 rown,我希望它在 View 加载时已经被选中。

第二个也是更重要的问题是,当我在选择器更新后重新加载数据时,我失去了选择,我的任务根本无法工作。

现在我知道这是 reloadData 的默认操作,我正在寻找一种替代方法来实现我的目标,或者我可能如何增加 reloadData 以不取消选择当前选择。

我的任务如下:

-(IBAction)dateChanged
{

NSIndexPath *index = self.dateTableView.indexPathForSelectedRow;
if(index == 0)
{
if (self.date2 == plusOne ) {
self.date = [datePicker date];
plusOne = [self.date dateByAddingTimeInterval:60*60];
self.date2 = plusOne;
}
else
{
self.date = [datePicker date];
}

}
else{
self.date2 = [datePicker date];
}

[dateTableView reloadData];
}

注意:plusOne 是一个变量,最初表示从当前时间开始的一个小时。

提前致谢!

最佳答案

对于第一个问题,在方法调用上设置 animated:NO。您当前将其设置为"is"。

[dateTableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionBottom];

对于第二个问题,在重新加载数据后你试图选择什么并不是很清楚,但我看到这一行有问题:

    if(index == 0)

你问的是指向对象的指针是否为 0。我认为你想要的是检查 index == nilindex.section == 0 && index。行 == 0 或类似的东西。

无论如何,如果您在 UITableView 上调用 reloadData,您将失去选择。此时,您需要选择一个新行。如果你的数据模型中有一个你想要选择的项目,你需要找出它的位置并根据它在表中的位置选择它(你应该知道这一点,因为你在 UITableViewDataSource 委托(delegate)中提供了该信息方法。)。或者,如果要选择在 dateChanged 的第一行中保存的 NSIndexPath,只需在重新加载数据后选择它即可。

关于ios - 通过 reloadData 更新 UITableView 时保持选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9791507/

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