gpt4 book ai didi

ios - tableView 滚动到底部不显示最后一部分,必须手动滚动,有人知道吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:10:48 26 4
gpt4 key购买 nike

我使用了下面的两种方法,它们都有效,但我提到的问题。

扩展 UITableView {

func scrollToBottom() {
let sections = numberOfSections-1
if sections >= 0 {
let rows = numberOfRows(inSection: sections)-1
if rows >= 0 {
let indexPath = IndexPath(row: rows, section: sections)
DispatchQueue.main.async { [weak self] in
self?.scrollToRow(at: indexPath, at: .bottom, animated: true)
}
}
}
}

func moveToLastComment() {
if self.contentSize.height > self.frame.height {
let lastSectionIndex = self.numberOfSections - 1
let lastRowIndex = self.numberOfRows(inSection: lastSectionIndex) - 1
let pathToLastRow = NSIndexPath(row: lastRowIndex, section: lastSectionIndex)[enter image description here][1]
self.scrollToRow(at: pathToLastRow as IndexPath, at: UITableViewScrollPosition.bottom, animated: true)
}
}

最佳答案

使用这个方法

 self.tableView.setContentOffset(CGPoint(x: 0, y: CGFLOAT_MAX), animated: true)

关于ios - tableView 滚动到底部不显示最后一部分,必须手动滚动,有人知道吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43842263/

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