【发布时间】:2021-11-17 10:41:59
【问题描述】:
我创建了一个聊天视图,其中我使用了tableview,ChatView的基本功能是显示最新消息(最后一个单元格),但是tableView没有滚动到最后一个索引,它总是卡在中间的某个地方
func scrollToBottom() {
let point = CGPoint(x: 0, y: self.chatTableView.contentSize.height + 200.0)
self.chatTableView.setContentOffset(point, animated: true)
}
【问题讨论】:
标签: ios swift uitableview