I have a UIViewController with output for tableView
@IBOutlet weak var tableView: UITableView!
When I try to access the tableView variable in viewDidload , it throws an error saying that tableView is nil .
Everything seems to be configured in the interface builder. The class for File Owner is installed in my custom class, and the output of tableView is also configured. What could be wrong here, why is the tableView variable still missing even inside viewDidLoad?
ios swift interface-builder
Tyler
source share