gpt4 book ai didi

iOS UITableView 向上滚动时滚动位置跳跃

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:16:32 25 4
gpt4 key购买 nike

这就是我想要做的。我有一个 UITableViewCell 可以说固定高度为 300(它实际上是一个可变大小的高度,但我试图简化示例)

我想要实现的是,当我向上滚动时 - 我将有一个“缩略图”版本的单元格 - 高度为 75

我设法做到了,但现在的问题是,当我向上滚动时,先前的单元格高度会被调整,并且一旦单元格尺寸变小,滚动位置就会“跳跃”,这会导致 View “跳回”当他向上滚动时。

如何调整?

代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell;
if (indexPath.row < lastViewedChapter)
{
cell = [self generateChapterCell:tableView indexPath:indexPath collapsed:YES];
}
else
{
cell = [self generateChapterCell:tableView indexPath:indexPath collapsed:NO];
if (indexPath.row > lastViewedChapter)
{
lastViewedChapter = indexPath.row;
}
}
return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row < lastViewedChapter)
{
return 73;
}
else
{
return 300; //actually here is a code that calculates the height
}
}

最佳答案

您已经降低了上部单元格的高度,然后其他单元格向上移动以填充该空间,同时您仍在向右滚动?

尝试在更改单元格高度时设置新的 tableView.contentOffset。

在您的情况下,当您将单元格的高度返回为 73 时,contentOffset.y 应该是(旧的 contentOffset.y - (300 - 73))。

我没有对此进行测试,但我认为它可能会有所帮助,您也必须为其他情况计算新的 contentOffset(向下滚动时,表格重新加载数据时)。

static NSInteger _lastRow = -1;

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if (_lastRow == -1) {
_lastRow = indexPath.row;
return 300;
} else {
if (_lastRow > indexPath.row) {
_lastRow = indexPath.row;
if ([tableView rectForRowAtIndexPath:indexPath].size.height == 300) {
[tableView setContentOffset:CGPointMake(tableView.contentOffset.x, (tableView.contentOffset.y - (300 - 73)))];
}
return 73;
} else {
_lastRow = indexPath.row;
return 300;
}
}
}

这段代码工作正常但仍然有一些错误(第一次加载数据时的第一行高度就像你向上滚动一次一样,当你快速向上滚动到顶部时它不会正常反弹)但我希望这对你有所帮助.

关于iOS UITableView 向上滚动时滚动位置跳跃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29363186/

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