iOS UITableView 向上滚动时滚动位置跳跃
<p><p>这就是我想要做的。
我有一个 <code>UITableViewCell</code> 可以说固定高度为 300(它实际上是可变大小的高度,但我试图简化示例)</p>
<p>我想要实现的是,当我向上滚动时 - 我将有一个“缩略图”版本的单元格 - 高度为 75</p>
<p>我设法做到了,但现在的问题是,当我向上滚动时,之前的单元格高度会被调整,一旦单元格尺寸变小,滚动位置就会“跳跃”,这会导致 View “向下跳跃”当他向上滚动时。</p>
<p>如何调整?</p>
<p>代码:</p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell;
if (indexPath.row < lastViewedChapter)
{
cell = ;
}
else
{
cell = ;
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
}
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您已经降低了上方单元格的高度,然后其他单元格向上移动以填充该空间,而您仍在向右滚动?</p>
<p>当你改变单元格的高度时,尝试设置新的 tableView.contentOffset。</p>
<p>在您的情况下,当您将单元格的高度返回为 73 时,contentOffset.y 应该是 (old contentOffset.y - (300 - 73))。</p>
<p>我没有对此进行测试,但我认为它可能会有所帮助,并且您还必须为其他情况计算新的 contentOffset(向下滚动时,当表格重新加载数据时)。</p>
<pre><code>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 (.size.height == 300) {
;
}
return 73;
} else {
_lastRow = indexPath.row;
return 300;
}
}
}
</code></pre>
<p>此代码工作正常,但仍有一些错误(第一次加载数据时的第一行高度就像您向上滚动一次一样,当您快速向上滚动到顶部时它不会正常反弹)但我希望这对您有所帮助.</p></p>
<p style="font-size: 20px;">关于iOS UITableView 向上滚动时滚动位置跳跃,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/29363186/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/29363186/
</a>
</p>
页:
[1]