我想在Xcode 4.2的 Storyboard 中更改以下代码。
UIViewController * example = [[ExampleViewController alloc] initWithNibName:@"ExampleViewController" bundle:nil];
现在存在ExampleViewController.xib文件。
但我想用 Storyboard 制作。
请帮我。
(我的英语不好。对不起)
最佳答案
UIStoryboard
类是您的 friend :
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"mystoryboard"
bundle:nil];
UIViewController* vc = [sb instantiateViewControllerWithIdentifier:@"ExampleViewController"];
关于ios - 如何在 Storyboard 中更改 “initwithNibName”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8848857/