Skip to content

Instantly share code, notes, and snippets.

@gracietti
Created April 5, 2017 00:54
Show Gist options
  • Save gracietti/502fb48a2021ddd8faa3898c48a46959 to your computer and use it in GitHub Desktop.
Save gracietti/502fb48a2021ddd8faa3898c48a46959 to your computer and use it in GitHub Desktop.
Add this extension to the Storyboard
import Foundation
import UIKit
extension UIStoryboard {
func instantiateViewController<T: UIViewController>() -> T where T: ReusableView {
return instantiateViewController(withIdentifier: T.reuseIdentifier) as! T
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment