UIPageViewController - 如何在横向模式下自定义左右页面?

时间:2012-08-31 02:18:42

标签: xcode ipad uipageviewcontroller

我在Xcode中有一个基于页面的应用程序,我正在尝试将其设置为左页面和右页面在横向模式下具有不同的布局。

具体来说,如果页面位于左侧,我想设置不同的页面bg图像,这样它看起来更像真实的书。

有没有办法在横向模式下以编程方式检测UIPageViewController是在左侧还是右侧?你会如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

如果你有背景图片的属性,你可以在viewControllerAtIndex上更改它

 - (YourPageContentViewController *)viewControllerAtIndex:(NSUInteger)index {   
   // Return the data view controller for the given index.
   if (([self.modelArray count] == 0) || (index >= [self.modelArray count])) {
       return nil;
   }
   YourPageContentViewController *dataViewController [[YourPageContentViewController alloc]initWithNibName:@"YourPageContentViewController" bundle:nil];
   if (index%2 ==0) {
      //set a background
      dataViewController.backgroundImage = imageForLeftSide;
   } else {
      //set the other background
      dataViewController.backgroundImage = imageForRightSide;
   }
   dataViewController.dataObject = [self.modelArray objectAtIndex:index];
   return dataViewController; 
}