안녕하세요. 모리스입니다.😀이번 노트는 간단하게 UITableView의 scroll에서 특정 IndexPath로 scroll되는 방법을 기술하려합니다.방법은 간단해요.tableView의 scrollToRow를 사용하여 특정 IndexPath로 scroll 되게 할 수 있어요.let indexPath = IndexPath(row: 0, section: 0)self.tableView?.scrollToRow(at: indexPath, at: UITableView.ScrollPosition.top, animated: true)이렇게하면 indexPath의 row와 section을 모두 0번째로 설정해 tableView의 최상단으로 scroll할 수 있어요.다른 방법으로는 UITableView의 contentO..