我正在构建一个包含pageViewController
的应用程序,并将内部控制器定义为以下内容..等等,whiteout添加子视图。
storyBoard.instantiateViewControllerWithIdentifier("FirstNavigationController") as! UINavigationController
storyBoard.instantiateViewControllerWithIdentifier("SecondNavigationController") as! UINavigationController
我找不到属性来改变pageViewController从黑色反弹到例如白色的背景,这真的可能吗?
答案 0 :(得分:1)
通过在UIPageViewController
viewDidLoad
方法中设置背景颜色,它对我有用,然后它改变了背景,包括反弹:
self.view.backgroundColor = UIColor.whiteColor()