Swift Reload Tableview
// You can access your tableView IBOutlet in viewDidLoad:,
self.tableView.reloadData()
Mobile Star
// You can access your tableView IBOutlet in viewDidLoad:,
self.tableView.reloadData()
let indexPath = IndexPath(item: rowNumber, section: 0)
tableView.reloadRows(at: [indexPath], with: .top)