You will have three options that can help you.
1 - Make sure you plug the power outlet into the view on the table.
2 - you can change your inheritance as below
class TeamsVC: UITableViewController, UITableViewDelegate, UITableViewDataSource{
.
.
.
}
you will have easy access to
self.tableView.reloadData()
3 You may need to initialize it programmatically
the first
var tableView: UITableView = UITableView()
and then in viewdidload
tableView = UITableView(frame: UIScreen.mainScreen().bounds, style: UITableViewStyle.Plain)
tableView.delegate = self
tableView.dataSource = self
source
share