I'm trying to make a custom tableViewCell
This is how it looks like
I've created new file type "Cocoa Touch Class" as UITableViewCell
Now I'm making variables for label and image like this:
@IBOutlet weak var goodImage: UIImageView!
@IBOutlet weak var goodTitle: UILabel!
And now as I think I have to connect them with objects from prototype cell, I'm trying to do it by such way
But it's don't want me to connect IBOutlet with object using this method. How should I do it correctly?