更新数据后 setContentOffset 不起作用

Posted

技术标签:

【中文标题】更新数据后 setContentOffset 不起作用【英文标题】:setContentOffset not working after updating data 【发布时间】:2016-02-29 02:07:33 【问题描述】:

我有一个UITableViewController,当用户滚动到顶部时,我想在第一个单元格上方添加一堆单元格而不影响当前滚动位置(就像 iMessage 一样)

我知道我可以使用insertRowsAtIndexPaths 来执行此操作而无需重新加载数据,但我只想先以最简单的方式执行此操作。所以我正在覆盖数据并调用reload,然后调用setContentOffset,但无论我将偏移量设置为什么,表格总是恢复到顶部。

// in an NSNotification handler
//...
dispatch_async(dispatch_get_main_queue(), ^

  // get old content height
  CGSize oldContentSize = self.tableView.contentSize;
  NSLog(@"old content height: %f", oldContentSize.height);

  // update tableView data
  self.messages = updatedMessages;
  [self.tableView reloadData];

  // get new content height
  CGSize newContentSize = self.tableView.contentSize;
  NSLog(@"new content height: %f", newContentSize.height);

  // move to user scroll position
  CGPoint newContentOffset = CGPointMake(0, newContentSize.height - oldContentSize.height);
  [self.tableView setContentOffset:newContentOffset];
);

当我运行它时,我得到:

old content height: 557.765625
new content height: 1249.050781

但 tableView 恢复到顶部而不是保持其滚动位置。

我发现如果我调用[self.tableView setContentOffset:newContentOffset animated:YES];它总是向下滚动到正确的位置,但是移动是不可接受的。

重新加载tableView数据后如何保持滚动位置?

我看过这些:

setContentOffset only works if animated is set to YES

UIScrollView setContentOffset: animated: not working

UITableView contentOffSet is not working properly

但他们的解决方案在我的情况下不起作用。

【问题讨论】:

[self.tableView setContentOffset:newContentOffset animated:NO];; 如果你更新它,我会接受你的答案 好的,非常感谢:) 【参考方案1】:

试试这个

[self.tableView setContentOffset:newContentOffset animated:NO]

【讨论】:

以上是关于更新数据后 setContentOffset 不起作用的主要内容,如果未能解决你的问题,请参考以下文章

iOS setContentOffset 在 ipad 上不起作用

WkWebview contentOffset 在设置动画 false 时不起作用

UITextView setContentOffset with scrollEnabled=NO 在 iOS7

Chartjs:更新数据后常见的可点击图例不起作用

更新后刷新网格不起作用

观察更新到 xcode 10.2.1 后数据库功能不起作用