• Jan
  • Feb
  • Mar
  • Apr
  • May
  • Jun
  • Jul
  • Aug
  • Sep
  • Oct
  • Nov
  • Dec
  • Sun
  • Mon
  • Tue
  • Wed
  • Thu
  • Fri
  • Sat
  • 27
  • 28
  • 29
  • 30
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

UITableview 특정 row로 스크롤하기

let rowIndexPath = NSIndexPath(row: 이동할 row int값, section: 0)
mainTableView.scrollToRow(at: rowIndexPath as IndexPath, at: UITableView.ScrollPosition.top, animated: true)

간단..~

스크롤을 cell의 어떤 기준으로 할 것인가?

UITableView.ScrollPosition.top 요 부분을 수정해주면 되는데,
top으로 지정하면 해당 셀의 맨 위 top에 맞춰서 스크롤한다.
.top, .middle, .bottom 이 있음 !

Screen-Recording-2021-05-20-at-9 47 16-PM

스르륵~