如何从故事板中对一个笔尖执行segue

时间:2012-08-22 15:22:38

标签: objective-c ios storyboard nib

我有90%的当前项目在storyboard中完成,但我也使用单个xib视图控制器来“输入你的pin”视图,因为这是它被集成到我导入项目的github项目中的方式。我需要从xib回到故事板。使用推送方法从故事板到xib很容易,但现在我想在故事板中模态到另一个视图。有什么建议?首先,我尝试将xib转换为故事板中的视图,但我失败了,因为它设计为使用笔尖。

2 个答案:

答案 0 :(得分:0)

您可以通过调用其实例化方法在故事板上创建任何视图控制器的新实例。

做类似的事情:

[storyboard instantiateViewControllerWithIdentifier:@"identifier"];

答案 1 :(得分:0)

首先从故事板中获取所需的ViewController(因此您需要在storyboard中为viewcontroller设置标识符

ViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"identifier"];

然后转到此控制器

[self presentModalViewController:vc animated:YES];