TableView Offset
-
[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)..