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
이 있음 !
스르륵~