Reputation: 905
I put one label text in my Table View row. Then Ctrl dragging to the ViewController.swift but error occurs. How to solve this problem? My Xcode version is 7.3.
Upvotes: 1
Views: 1205
Reputation: 990
You must connect the @IBOutlet into tableView cell class not in the main class. first of all you must make the custom class of tableview cell and assign it on storyboard as suggested in picture and draw @IBOutlet on that custom tableview cell class. Please look the attached image.
Hope it will help you.
Upvotes: 1