Fatal error: use of unimplemented initializer 'init(coder:)' for class
Issue
This is caused by the absence of the initializer init?(coder aDecoder: NSCoder)
on the target UIViewController
. That method is required because instantiating a UIViewController
from a UIStoryboard
calls it.
To see how we initialize a UIViewController
from a UIStoryboard
, please take a look here
Why is this not a problem with Objective-C?
Because Objective-C automatically inherits all the required UIViewController
initializers.
Why doesn't Swift automatically inherit the initializers?
Swift by default does not inherit the initializers due to safety. But it will inherit all the initializers from the superclass if all the properties have a value (or optional) and the subclass has not defined any designated initializers.
Solution
1. First method
Manually implementing init?(coder aDecoder: NSCoder)
on the target UIViewController
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
2. Second method
Removing init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?)
on your target UIViewController
will inherit all of the required initializers from the superclass as Dave Wood pointed on his answer below
Another option besides @3r1d's is to instead remove the following init method from your class:
init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?) {
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
// Custom initialization
}
Including that init method, prevents the sub class from inheriting the init(coder aDecoder: NSCoder!)
from its super class. By not including it, your class will inherit both.
Note: See WWDC 2014 Session 403 "Intermediate Swift" at about the 33:50 mark for more details.
For people having the same issue with swift UICollectionViewCells
, add the code that @3r1d suggested to your custom UICollectionViewCell
class and not to the View Controller:
init(coder aDecoder: NSCoder!)
{
super.init(coder: aDecoder)
}