Skip to content

Instantly share code, notes, and snippets.

@dreampowder
Created October 18, 2017 13:46
Show Gist options
  • Save dreampowder/5a5ba11aeeefe2b610c748ea6ec54851 to your computer and use it in GitHub Desktop.
Save dreampowder/5a5ba11aeeefe2b610c748ea6ec54851 to your computer and use it in GitHub Desktop.
Generic Load from nib swift
extension UIViewController {
class func loadFromNib<T: UIViewController>() -> T {
return T(nibName: String(describing: self), bundle: nil)
}
}
let vc : OfferDetailViewController = OfferDetailViewController.loadFromNib()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment