tableview 无法显示来自底部的消息

tableview can't show messages from bottom

我正在使用 Swift 和 firebase 创建聊天应用程序,每件事对我来说都很完美,但我想要在收到或发送新消息时显示在 UITableView 底部的 whats 应用程序。为此,我尝试使用以下代码,但它对我不起作用

代码

在旁边viewDidLoad()我写了下面的代码

chatTableView.transform = CGAffineTransform(rotationAngle: -(CGFloat)(Double.pi));

在旁边cellForRowAt indexPath我写了下面的代码

cell.transform = CGAffineTransform(rotationAngle: CGFloat(Double.pi));

但是这段代码对我不起作用总是新消息出现在表格视图的顶部而不是底部。

在这两种情况下尝试使用 CGAffineTransform(scaleX: 1, y: -1) 而不是旋转。