Scroll To Item

최완식·2022년 8월 11일
0

UIKit

목록 보기
22/33
post-thumbnail

CollectionView나 TableView에서 특정 요소로 스크롤 시키는 방법에 대해 알아본다.

TableView

self.tableView.scrollToRow(at: IndexPath(row: 10, section: .zero),
                           at: .bottom,
                           animated: true)
  • 여기서 이동할 때, 해당 요소가 어느 위치에 있는지 결정할 수 있다.
  • top, middle, bottom이 키값으로 존재한다.
  • UITableView.ScrollPosition 참고

CollectionView

self.collectionView.scrollToItem(at: IndexPath(row: 10, section: 0),
                                 at: .bottom,
                                 animated: true)

Reference

profile
Goal, Plan, Execute.

0개의 댓글