从Storyboard ViewController调用函数?

时间:2012-08-21 08:57:38

标签: ios ios4 storyboard

我将项目设置为故事板。

有一个子视图,我打开了该视图,我想访问storyboard UIViewController's函数来触发事件。

这样的东西可以访问吗?

1 个答案:

答案 0 :(得分:0)

根据我的经验,如果你没有触发故事板的过渡,你通常会更好地使用旧式的方式。

UIViewController* newVC = [self.storyboard instantiateViewControllerWithIdentifier:@"MyViewController"];
// do whatever setup you want here


[self.navigationController pushViewController:newVC];

当你正在做的事情与故事板方法相符时,它很棒,但它不会给你任何你不能手工做的事情,一旦你开始传递VC之间的任何复杂的东西,节省的优势由于必须编写复杂的prepareForSeque等,因此不必实现IBActions。