In case you have not noticed, there is no straight forward alternative to using 'instanceType' in Swift. You might have tried using "Self" in place of instanceType like shown in the below code snippet.
But turns out it gives an error saying the object cannot be converted to type Self. I found this elegant solution posted by Martin R on StackOverflow and it uses Generics.
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
class func instantiateFromStoryboard(storyboardName: String, storyboardId: String) -> Self | |
{ | |
return instantiateFromStoryboardHelper(storyboardName, storyboardId: storyboardId) | |
} |
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
extension UIViewController | |
{ | |
class func instantiateFromStoryboard(storyboardName: String, storyboardId: String) -> Self | |
{ | |
return instantiateFromStoryboardHelper(storyboardName, storyboardId: storyboardId) | |
} | |
private class func instantiateFromStoryboardHelper<T>(storyboardName: String, storyboardId: String) -> T | |
{ | |
let storyboard = UIStoryboard(name: storyboardName, bundle: nil) | |
let controller = storyboard.instantiateViewControllerWithIdentifier(storyboardId) as! T | |
return controller | |
} | |
} | |
let vc = MyViewController.instantiateFromStoryboard("name", storyboardId: "id") |