这就是我想要做的。
我有一个 UITableViewCell 可以说固定高度为 300(它实际上是可变大小的高度,但我试图简化示例)
我想要实现的是,当我向上滚动时 - 我将有一个“缩略图”版本的单元格 - 高度为 75
我设法做到了,但现在的问题是,当我向上滚动时,之前的单元格高度会被调整,一旦单元格尺寸变小,滚动位置就会“跳跃”,这会导致 View “向下跳跃”当他向上滚动时。
如何调整?
代码:
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)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)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)indexPath
{
if (indexPath.row < lastViewedChapter)
{
return 73;
}
else
{
return 300; //actually here is a code that calculates the height
}
}
Best Answer-推荐答案 strong>
您已经降低了上方单元格的高度,然后其他单元格向上移动以填充该空间,而您仍在向右滚动?
当你改变单元格的高度时,尝试设置新的 tableView.contentOffset。
在您的情况下,当您将单元格的高度返回为 73 时,contentOffset.y 应该是 (old contentOffset.y - (300 - 73))。
我没有对此进行测试,但我认为它可能会有所帮助,并且您还必须为其他情况计算新的 contentOffset(向下滚动时,当表格重新加载数据时)。
static NSInteger _lastRow = -1;
- (CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)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/
|