Mar 20iOS development tips: How to instantiate UIViewController from StoryboardIn this article, I’d like to show how to instantiate a UIViewController from a Storyboard using a protocol-oriented approach. Usually to create view controllers from UIStoryboard, we use the instantiateViewController(withIdentifier:) method of the UIStoryboard class to create an instance of the desired view controller. For example: let storyboard = UIStoryboard(name…Swift2 min readSwift2 min read