如何滚动到表格视图的底部?

时间:2018-08-07 07:29:17

标签: uitableview uiscrollview

我必须滚动到表格视图的底部。在iOS 10中,它运行良好,在iOS 11中,它滚动到表格视图的一半并停止。它不会滚动到表格视图的底部。

[tableObj scrollRectToVisible:CGRectMake(0, tableObj.contentSize.height - tableObj.frame.size.height,tableObj.frame.size.width, tableObj.frame.size.height) animated:YES];

1 个答案:

答案 0 :(得分:0)

尝试一下。

let indexPath = IndexPath(row: tableDataList.count - 1, section: 0)

table.scrollToRow(at: indexPath, at: .bottom, animated: true)