我通读了文档,但是我仍然无法理解这个文档。我有一个导航 VC,我将一个 pageview VC 设置为它的根(虽然它没有在 PageViewController 的 viewdidload 中命中我的断点)。到目前为止,一切都在故事板中完成。
我现在是否在情节提要中创建两个新的视图控制器并用这两个创建一个数组?他们从哪里获得此页面 VC 的 VC?
谢谢。
这是来自 pageviewcontroller 的一些代码:(没有任何反应,只是黑屏)
@实现结果视图控制器
- (void)viewDidLoad
{
[super viewDidLoad];
self.delegate=self;
self.dataSource=self;
NSMutableArray *array=[[NSMutableArray alloc]init];
[array addObject:[[Page1ViewController alloc]init]];
[array addObject:[[Page2ViewController alloc]init]];
[self setViewControllers:[NSArray arrayWithArray:array] direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:nil];
// Do any additional setup after loading the view.
}
-(void)setViewControllers:(NSArray *)viewControllers direction:(UIPageViewControllerNavigationDirection)direction animated:(BOOL)animated completion:(void (^)(BOOL))completion{};
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}