從故事板例項化

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];

使用識別符號

在故事板的身份檢查器中為場景提供 Storyboard ID。

StackOverflow 文件

在程式碼中例項化:

UIViewController *controller = [storyboard instantiateViewControllerWithIdentifier:@"myIdentifier"];

例項化一個初始 viewcontroller

在故事板中選擇檢視控制器,然後選擇屬性檢查器,選中是初始檢視控制器框。

StackOverflow 文件

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController *controller = [storyboard instantiateInitialViewController];