gpt4 book ai didi

iphone - 从底部加载 UITableView

转载 作者:可可西里 更新时间:2023-11-01 03:22:37 25 4
gpt4 key购买 nike

我正在尝试使用 UITableView 模仿 iMessage 气泡文本行为。为了始终滚动到底部,我在 viewDidLoadviewDidAppear 时使用了 scrollToRowAtIndexPath。这是因为当 viewDidLoad 方法被调用时,表格还没有完全加载,所以我需要在 viewDidAppear 中额外滚动。这段代码可以解决问题。但是,我想要的不是动画滚动(将 animated 设置为 NO 并不能解决这个问题),我希望表格始终从底部显示,而不是加载表,然后转到最后一行。

这可能吗?我找不到任何完全符合所需行为的解决方案。

最佳答案

这是最好的解决方案!

把一切都颠倒过来!

tableView.transform = CGAffineTransformMakeRotation(-M_PI);
cell.transform = CGAffineTransformMakeRotation(M_PI);

swift 4.0:

tableView.transform = CGAffineTransform(rotationAngle: -CGFloat.pi)
cell.transform = CGAffineTransform(rotationAngle: CGFloat.pi)

不过要小心,因为现在 headerView 和 footerView 的位置也颠倒了。

关于iphone - 从底部加载 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13196393/

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