Reputation: 41
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self // error occurs here
}
Upvotes: 1
Views: 460
Reputation: 194
Make sure that your @IBOutlet tableView
is properly connected with interface builder.
Upvotes: 1