UIStoryboard storyboard = UIStoryboard.FromName("Main", null); UIViewController viewController = storyboard.InstantiateViewController("ViewController") as UIViewController;
UIStoryboard storyboard = UIStoryboard.FromName("Settings", null); UITableView tableView = storyboard.InstantiateViewController("TableView") as UITableView;In this example, the FromName method initializes a storyboard object named "Settings" and the InstantiateViewController method instantiates a table view named "TableView" from the storyboard. Package library: UIKit.framework