从故事板实例化
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
使用标识符 :
在故事板的身份检查器中为场景提供 Storyboard ID。
在代码中实例化:
UIViewController *controller = [storyboard instantiateViewControllerWithIdentifier:@"myIdentifier"];
实例化一个初始 viewcontroller :
在故事板中选择视图控制器,然后选择属性检查器,选中是初始视图控制器框。
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController *controller = [storyboard instantiateInitialViewController];