Swift Uitableview Insert Cell

[Solved] Swift Uitableview Insert Cell | Swift - Code Explorer | yomemimo.com
Question : swift uitableview insert cell

Answered by : mobile-star

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()

Source : | Last Update : Mon, 16 Mar 20

Answers related to swift uitableview insert cell

Code Explorer Popular Question For Swift