Swift连接页面视图控制器到视图控制器

时间:2016-02-21 07:49:41

标签: ios objective-c swift xcode6

我正在尝试将Page View Controller中的最后一页连接到另一个视图控制器。

在页面视图控制器中,我将下面的方法看作我的最后一页,并将其链接到另一个视图控制器。但是,它不起作用。我收到了一个崩溃。

if (index == self.pageTitles.count) {
  let secondViewController = self.storyboard?.instantiateViewControllerWithIdentifier("SecondViewController") as! SecondViewController
  self.navigationController?.pushViewController(secondViewController, animated: true)
  return nil
}

0 个答案:

没有答案