-
[ios - Swift] UITableView 특정 위치로 이동ios 2020. 11. 26. 09:54
1. scrollToRow
IndexPath의 section과 row의 위치로 이동을 하게 됩니다.
아래와 같은 확장 메서드를 만들어 사용해보도록 하겠습니다.
import Foundation import UIKit extension UITableView { func GoToBottom() { DispatchQueue.main.async { let section = self.numberOfSections - 1 let row = self.numberOfRows(inSection: section) - 1 let indexPath = IndexPath(row: row, section: section) self.scrollToRow(at: indexPath, at: .bottom, animated: false) } } }
@IBOutlet weak var mTableView: UITableView! mTableView.GoToBottom()
2. setContentOffset
UITableView ContentSize의 해당하는 위치로 이동합니다. 절대 위치 값인 것 같습니다.
mTableView.setContentOffset(CGPoint(x: 0, y: offsetY), animated: false)
기본적인 사용방법이며 상대 위치로 변경하고 싶다면
UITableView의 contentOffset 을 사용하여 Offset값을 가감해 사용하면 됩니다.
'ios' 카테고리의 다른 글
[ios - Swift] Delegate를 사용해서 뷰에 데이터 전송하기 (0) 2020.11.30 [ios - Swift] 키보드 사용시 뷰 올리기 (0) 2020.11.26 [ios - Swift] UIView.Xib 사용하기 (0) 2020.11.24 [ios - Swift] UITableView 무한스크롤 구현하기 (0) 2020.11.22 [ios - Swift] RefreshControl 사용하기 (0) 2020.11.22