假设我有10个元素的数组,并且我希望第5个在加载时位于tableView的第一个位置但是我想向上滚动以查看前4个单元格。
答案 0 :(得分:1)
你可以这样做:
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
let indexPath = IndexPath(row: 5, section: 0)
self.tableView.scrollToRow(at: indexPath, at: .top, animated: true)
}
确保row
和section
正确无误。