我有一个UIPageViewController,它可以在页面间翻转,所有页面都可以正常加载,除了第一个页面保持黑色,而且加载图标不会消失。下面是设置pageviewcontroller的第一个视图的方法(它是对从后端获取信息的函数的回调)

self.card.images = cardImagesArray
activityIndicator.stopAnimating()
activityIndicator.removeFromSuperview()
self.cardImages = cardImagesArray
let startingViewController: UIViewController = getItemController(0)!
let viewControllers: NSArray = [startingViewController]
pageViewController!.setViewControllers(viewControllers as! [AnyObject], direction: .Forward, animated: false, completion: nil)

最佳答案

您是否在getItemController方法中实例化了启动视图控制器?
例如

let vc = self.storyboard?.instantiateViewControllerWithIdentifier("storyboardId") as! UIViewController

关于ios - UIPageViewController的第一页显示黑屏且未加载内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30269344/

10-16 00:38