Created
August 1, 2020 12:34
-
-
Save VladimirBrejcha/1d0fe28cc39f84ad207d2a1c3a44c7e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension UIStoryboard { | |
func instantiateViewController<Type: UIViewController>(of type: Type.Type) -> Type { | |
instantiateViewController(withIdentifier: String(describing: type)) as! Type | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment