UITableView#scrollToBottom() - Swift-UIKit-Extensions
higepon/Swift-UIKit-Extensions
// // UITableViewExtensions.swift // SwiftOneDAy // // Created by Taro Minowa on 6/21/14. // Copyright (c) 2014 Higepon Taro Minowa. All rights reserved. // import UIKit extension UITableView { func scrollToBottom(animated: Bool = true) { let bottomOffset = CGPointMake(0, contentSize.height - bounds.size.height) setContentOffset(bottomOffset, animated: animated) } }