Skip to content

Commit

Permalink
Added missing example initializer.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajsecord committed Oct 12, 2016
1 parent e0c4c79 commit f537874
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ class PalettesExampleViewController: UITableViewController {
super.init(style: style)
}

override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?) {
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
}

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

0 comments on commit f537874

Please sign in to comment.