This code has reportedly worked here and here, but I can\'t seem to make it work.
The IBOutlets are hooked up to their objects in the storyboard. The prototypeCell i
The right way to inherit UITableViewCell in Swift 4:
class MyTableViewCell: UITableViewCell { override init(style: UITableViewCellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) } required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) } }