Skip to content

Instantly share code, notes, and snippets.

@ANNotunzdY
Created February 18, 2017 08:05
Show Gist options
  • Save ANNotunzdY/d94189ced945868e9e3d7649993c7a28 to your computer and use it in GitHub Desktop.
Save ANNotunzdY/d94189ced945868e9e3d7649993c7a28 to your computer and use it in GitHub Desktop.
import UIKit
extension UIStoryboard {
func instantiate<T: UIViewController>(for type: T.Type) -> T? {
let name = NSStringFromClass(type)
let vc = instantiateViewController(withIdentifier: name)
return vc as? T
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment