Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eofster/c065d9f459fd377ebd89 to your computer and use it in GitHub Desktop.
Save eofster/c065d9f459fd377ebd89 to your computer and use it in GitHub Desktop.
View controller with dependency injected in the initializer
class PhotoDetailViewController2: UIViewController {
let photo: Photo
init(photo: Photo) {
self.photo = photo
super.init(nibName: "PhotoDetailViewController2", bundle: nil)
}
required init?(coder: NSCoder) {
fatalError("init(coder:) is not supported")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment