-1

UIPageViewControllerの裏ページの色を白から画像に変更したいです。以前のスタックオーバーフローの提案からそれを達成しようとしましたが、それを行う方法を取得できません。正確に何をする必要があるかを誰かが私に提案できますか?

-(void) createPages{ 
  self.pages = [[NSMutableArray alloc]initWithCapacity:6];
  CountViewController *controller; 
  UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle mainBundle]];
  for (int i = 0; i < 6; i++) { controller = [storyboard instantiateViewControllerWithIdentifier:@"countView"]; 
   controller.pageNumber = [NSNumber numberWithInt:i];
   [controller.view setUserInteractionEnabled:YES]; 
   [self.pages addObject:controller]; 
  }
}
4

1 に答える 1

1

ウィンドウの背景色が表示されています。ウィンドウの背景色を設定する必要があります。

appDelegate.window.backgroundColor = [UIColor blackColor];
于 2013-05-28T13:18:38.557 に答える