TableView에 여러 내용을 분류하여 여러 section으로 contents를 구성해놓은 경우 특정 이벤트가 발생할 때 해당되는 contents가 있는 위치로 이동시켜주어야할 때가 있습니다. 그럴 때는 아래와 같은 function을 만들어 사용하시면 됩니다.
func scrollTo(section: Int, row: Int){
DispatchQueue.main.async {
let indexPath = IndexPath(row: row, section: section)
self.tableView.scrollToRow(at: indexPath, at: .bottom, animated: true)
}
}