Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fatal error: init(coder:) has not been implemented error despite being implemented

I am receiving an error message:

fatal error: init(coder:) has not been implemented

For my custom UITableViewCell. The cell is not registered, has the identifier cell in the storyboard and when using dequeasreusablecell. In the custom cell I have the inits as:

Code:

override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
    print("test")
    super.init(style: style, reuseIdentifier: reuseIdentifier)
}

required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}

But I still have the error. Thanks.

like image 727
Lee Avatar asked Aug 16 '16 04:08

Lee


2 Answers

Firstly, you need to call the super class' init(coder:) method with the statement super.init(coder: aDecoder). You do that by adding it right under the method signature like-

required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
}

Secondly, you need to remove the statement,

fatalError("init(coder:) has not been implemented").

That should work.

like image 38
Natasha Avatar answered Oct 26 '22 22:10

Natasha


Replace your init with coder method:

required init?(coder aDecoder: NSCoder) {
   super.init(coder: aDecoder)
}

Actually if you have your cell created in Storyboard - I believe that it should be attached to tableView on which you try to create it. And you can remove both of your init methods if you do not perform any logic there.

UPD: If you need to add any logic - you can do this in awakeFromNib() method.

override func awakeFromNib() {
   super.awakeFromNib()
   //custom logic goes here   
}
like image 60
ruslan.musagitov Avatar answered Oct 26 '22 22:10

ruslan.musagitov