-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Labels
Description
Hi.
This is a simple one to fix for this version of Xcode.
fatal error: init(coder:) has not been implemented: file ./Pods/KGFloatingDrawer/Pod/Classes/KGDrawerViewController.swift, line 29
required public init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
This goes away if I simply add a call to super.init prior to the fatalError:
super.init(coder: aDecoder)
Reactions are currently unavailable