How to set color for background view in UIPageViewController
? Is it possible to do this in Storyboard?
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.
}