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)
  • ์ด ์นœ๊ตฌ๊ฐ™์€ ๊ฒฝ์šฐ์—๋Š” ์˜ต์…˜์ด ๋ณด๋‹ค ๋‹ค์–‘ํ•œ๋‹ค.
  • UICollectionView.ScrollPosition ์ฐธ๊ณ 

Reference