이번 노트는 간단하게 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 된다.