Search code examples
iosstoryboarduipageviewcontrollerxcode7-beta4

How to set background color for UIPageViewController?


How to set color for background view in UIPageViewController? Is it possible to do this in Storyboard?

enter image description here


Solution

  • edit: I thought the question was about UIPageControl.

    You should be able to simply modify the color of the UIPageViewController's view:

    - (void)viewDidLoad {
        [super viewDidLoad];
        self.view.backgroundColor = [UIColor blueColor]; //Set to any color.
    }