更改弹跳背景pageViewController

时间:2015-08-02 10:50:29

标签: ios objective-c swift uipageviewcontroller

我正在构建一个包含pageViewController的应用程序,并将内部控制器定义为以下内容..等等,whiteout添加子视图。

storyBoard.instantiateViewControllerWithIdentifier("FirstNavigationController") as! UINavigationController
storyBoard.instantiateViewControllerWithIdentifier("SecondNavigationController") as! UINavigationController

我找不到属性来改变pageViewController从黑色反弹到例如白色的背景,这真的可能吗?

1 个答案:

答案 0 :(得分:1)

通过在UIPageViewController viewDidLoad方法中设置背景颜色,它对我有用,然后它改变了背景,包括反弹:

self.view.backgroundColor = UIColor.whiteColor()