I have a UIViewController with an outlet for a tableView
@IBOutlet weak var tableView: UITableView!
When I try to access the tableView variable in viewDidload
it's throwing an error saying tableView is nil
.
Everything seems to be set up in the interface builder. The class for File's Owner is set to my custom class and the tableView outlet is set as well. What could be going wrong here, why is tableView variable still nil even inside viewDidLoad?