In Apple\'s Messages app, when you click a correspondent\'s name and switch to the table view of the conversation (with balloons for each message), the table appears scrolle
Answer of @DyingCactus in Swift 3 & Swift 4:
let lastRow: Int = self.tableView.numberOfRows(inSection: 0) - 1 let indexPath = IndexPath(row: lastRow, section: 0); self.tableView.scrollToRow(at: indexPath, at: .top, animated: false)