标签:
类似聊天那种效果,最新出现消息后,会自动滚动到表的底部,具体代码实现如下:
var secon = 1 //最后一个分组的索引(0开始,如果没有分组则为0) var rows = 5 //最后一个分组最后一条项目的索引 var indexPath = NSIndexPath(forRow: rows, inSection: secon) self.tableView?.scrollToRowAtIndexPath(indexPath, atScrollPosition:UITableViewScrollPosition.Bottom, animated: true)
标签:
原文地址:http://www.cnblogs.com/hero11223/p/5736538.html