CollectionView나 TableView에서 특정 요소로 스크롤 시키는 방법에 대해 알아본다.
self.tableView.scrollToRow(at: IndexPath(row: 10, section: .zero),
at: .bottom,
animated: true)
self.collectionView.scrollToItem(at: IndexPath(row: 10, section: 0),
at: .bottom,
animated: true)