我正在尝试使用情节提要手动启动视图控制器。
那是用代码编写的,而不是把它连接起来。我试过:
self initWithNibName:(NSString *) bundle:(NSBundle *)
但我不确定它们是否被归类为笔尖,或者它们在情节提要中被归类为什么。任何帮助都会非常感谢!
我正在尝试使用情节提要手动启动视图控制器。
那是用代码编写的,而不是把它连接起来。我试过:
self initWithNibName:(NSString *) bundle:(NSBundle *)
但我不确定它们是否被归类为笔尖,或者它们在情节提要中被归类为什么。任何帮助都会非常感谢!
听起来您正在寻找这种方法:
AlertContainerViewController *alertContainerViewController =
[[UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:NULL]
instantiateViewControllerWithIdentifier:@"alertContainer"];
您需要给 Storyboard 中的 ViewController 对象一个唯一标识符并指定子类。您可以通过 Property Inspector 完成这两项操作。