2. 메시지 작성 시 최근 메시지를 계속 아래로 내리기 loadmessage 메서드에서 let indexPath = IndexPath(row: , section: ) self.tableView.scrollToRow(at: , at: , animated: ) scrollToRow를 작성해주면 된다. let indexPath = IndexPath(row: self.messages.count - 1, section: 0) messages가 array type이므로 -1을 해줬고 section도 마찬가지로 1개의 섹션이면 0부터 시작하기 때문에 0으로 설정 self.tableView.scrollToRow(at: indexPath, at: .top, animated: true) 위에서 설정한 indexPath를 ..