This bug has been driving me nuts since I started using Xcode (4.6.3). Whenever I try to link a Storyboard item to my code, I get the error:
Could not
Sometime Xcode does due to VC not referencing class file. The simple solution for this is:
write property manually as given.
class YourClassName{
@IBOutlet weak var YourTableName: UITableView!
}
This will make a empty link sign before @IBOutlet, open your project in assistant editor then click link sign and drag into the View which you want to connect (i have connected with TableView). and thats it. Enjoy Happy Coding!!!