Lee
Lee

Reputation: 923

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.

Upvotes: 73

Views: 84010

Answers (2)

Natasha
Natasha

Reputation: 6893

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.

Upvotes: 13

ruslan.musagitov
ruslan.musagitov

Reputation: 2124

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   
}

Upvotes: 178

Related Questions