搜索
您的当前位置:首页正文

19.UTTableView滚动到底部

来源:二三娱乐
func scrollToBottom() {
        let index = messageList.endIndex - 1
        let indexPath = NSIndexPath(forRow: index, inSection: 0)
        tableView.scrollToRowAtIndexPath(indexPath, atScrollPosition: UITableViewScrollPosition.Bottom, animated: false)
    }
Top