我有一个包含不同部分的表格视图。每个部分都有其on header视图。单击按钮后,我想滚动到特定的标题视图。
以下方法无效,因为我的上一节可以展开(行可见)或折叠(数字或行== 0)。
self.tableView.scrollToRow(at: indexPath, at: .middle, animated: true)
谢谢。
答案 0 :(得分:0)
tableView.scrollToRow(at: IndexPath(row: 0, section: 0 ), at: .top, animated: true)
这会将表格滚动到该行顶部的特定部分。
如果动画设置为true,将提供很好的滚动效果