Set the content inset on your table view:
var insets: UIEdgeInsets = tableView.contentInset
insets.bottom = 100
tableView.contentInset = insets
or, simply:
tableView.contentInset.bottom = 100
That will leave some blank space under the table view after you scroll to the last cell.