📜  swift uitableview 插入单元格 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:01:03.289000             🧑  作者: Mango

代码示例1
self.yourArray.append(msg)

self.tblView.beginUpdates()
self.tblView.insertRows(at: [IndexPath.init(row: self.yourArray.count-1, section: 0)], with: .automatic)
self.tblView.endUpdates()