我的UIPageViewController中有一些奇怪的问题。 我有一个故事板文件,包含我想要在我的UIPageViewController中使用以下代码显示的所有UIViewControllers:
func viewControllerAtIndex(index: Int) -> UIViewController! {
var viewController = self.storyboard?.instantiateViewControllerWithIdentifier(pageIdentifiers[index] as! String) as! UIViewController
return viewController
}
pageIdentifiers是一个包含Storyboard ID的数组。
我以模态方式呈现我的UIPageViewController(全屏)。我的第一个UIViewController出现没问题。在刷到下一个UIViewController之后,我在该控制器内部的视图向下移动大约20个像素......我的下一个ViewControllers也是如此。我真的不知道造成这个问题的原因。我希望你们有个主意。
提前致谢!