有时我们需要通过
代码自动将表格UITableView滚动条移动到尾部,只需要使用scrollToRowAtIndexPath
方法即可,
代码如下:
1
2
3
4
5
|
var
secon = 1
rows = 5
indexPath =
NSIndexPath
(forRow: rows,inSection: secon)
self
.tableView?.scrollToRowAtIndexPath(indexPath,atScrollPosition:
UITableViewScrollPosition
.
Bottom
,
animated:
true
)
|