从视图控制器到PageViewController

时间:2015-05-19 13:16:54

标签: ios model-view-controller uiviewcontroller storyboard uipageviewcontroller

我有两个maximum的{​​{1}},我想知道如何从UIViewControllers传递到UIButtons, 我试图将UIViewController与我的UIPageViewController从故事板中链接,但它给了我这个错误

  

由于未捕获的异常而终止应用   'NSInvalidArgumentException',原因:'Storyboard()不包含带标识符的视图控制器   指南''

我该怎么办?

修改

UIButton

将此添加到我的UIPageViewController并在我的故事板中添加了标识符与- (IBAction)goToGuide:(id)sender{ [self performSegueWithIdentifier:@"goToGuide" sender:self]; } - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([[segue identifier] isEqualToString:@"nextView"]) { FirstLaunch *fLaunch = [segue destinationViewController]; //pass any data to next view here } } 之间的连接,并将标识符设置为goToGuide,但错误相同..

UP

EDIT2

UIViewController

它说,在FirstLaunch类型的对象上找不到属性窗口

1 个答案:

答案 0 :(得分:0)

在故事板中给出segue标识符,你一定错过了它。

检查这个答案 ios automatically segue from one screen to another