Boram Han
Boram Han
You can access internal textView by `textView` property. `growingTextView.textView.enablesReturnKeyAutomatically = true`
I tested with example app, my own app, and MessageKit demo app. MessageKit demo app works well only when I call `scrollToBottom` after reloading. Also comparing to my own app,...
Another test with `UITableView` ``` func viewDidLoad() { super.viewDidLoad() self.data = ["a", "b", .... ] DispatchQueue.main.async { self.tableView.scrollToRow(at: IndexPath(row: self.data.count - 1, section: 0), at: .bottom, animated: false) } }...