swift tableview reload data without scrolling code example
Example 1: how to disable uitableview scrolling in swift
tableView.alwaysBounceVertical = false
Example 2: swift reload tableview
// You can access your tableView IBOutlet in viewDidLoad:,
self.tableView.reloadData()