UITableview在重新加载时滚动到顶部

时间:2016-06-03 12:53:04

标签: swift tableview cell reloaddata

我在我的应用程序中遇到问题 - 您可以发布和编辑您喜欢的地方。发布帖子或修改特定帖子(UITableViewCell)后,会重新加载UITableview

我的问题是:重新加载后UITableview滚动到顶部。但这不是我想要的。我希望我的观点留在我所在的单元格/视图上。但我不知道如何管理。

你能帮帮我吗?

5 个答案:

答案 0 :(得分:24)

如果您使用动态可调整大小的单元格(UITableViewAutomaticDimension),那么Igor的答案是正确的

这是快速3:

    private var cellHeights: [IndexPath: CGFloat?] = [:]
    var expandedIndexPaths: [IndexPath] = []

    func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
        cellHeights[indexPath] = cell.frame.height
    }

    func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
        if let height = cellHeights[indexPath] {
            return height ?? UITableViewAutomaticDimension
        }
        return UITableViewAutomaticDimension
    }


    func expandCell(cell: UITableViewCell) {
      if let indexPath = tableView.indexPath(for: cell) {
        if !expandedIndexPaths.contains(indexPath) {
            expandedIndexPaths.append(indexPath)
            cellHeights[indexPath] = nil
            tableView.reloadRows(at: [indexPath], with: UITableViewRowAnimation.automatic)
            //tableView.scrollToRow(at: indexPath, at: .top, animated: true)
        }
      }
    }

答案 1 :(得分:15)

为防止滚动到顶部,您应该在加载时保存单元格的高度,并在tableView:estimatedHeightForRowAtIndexPath中提供准确的值:

// declare cellHeightsDictionary
NSMutableDictionary *cellHeightsDictionary;

// initialize it in ViewDidLoad or other place
cellHeightsDictionary = @{}.mutableCopy;

// save height
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    [cellHeightsDictionary setObject:@(cell.frame.size.height) forKey:indexPath];
}

// give exact height value
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSNumber *height = [cellHeightsDictionary objectForKey:indexPath];
    if (height) return height.doubleValue;
    return UITableViewAutomaticDimension;
}

答案 2 :(得分:11)

UITableView的{​​{1}}方法明确强制重载整个tableView。它运行良好,但如果您要使用用户当前正在查看的tableview进行操作,通常会出现震动和糟糕的用户体验。

相反,请查看reloadData()reloadRowsAtIndexPaths(_:withRowAnimation:) in the documentation

答案 3 :(得分:4)

如果您想要一个简单的解决方案,请选择这些行

    let contentOffset = tableView.contentOffset
    tableView.reloadData()
    tableView.setContentOffset(contentOffset, animated: false)

答案 4 :(得分:1)

在swift 3.1中

DispatchQueue.main.async(execute: {

    self.TableView.reloadData()
    self.TableView.contentOffset = .zero

})