如何在CollectionViewController
内实例化ViewController
并将CollectionViewControllers
视图设为ViewController
的子视图? FlowLayout有一个问题,但我无法找到解决方案。
我需要在2个单独的collectionView
中使用相同viewControllers
的功能。因此我想创建CollectionViewController
,我可以重复使用不同的属性,并将其视图分配给第二个ViewController
。
答案 0 :(得分:0)
我不确定你是否已经尝试过这个,因为你没有真正放置任何代码示例或详细解释你的问题是什么,但你可以将collectionViewController作为childViewController添加到你的parentViewController。
yourCollectionViewController *yourName = [self.storyboard instantiateViewControllerWithIdentifier:@"YOUR_IDENTIFIER"];
//Add view to the container view tower
[self addChildViewController:yourName];
[self.view addSubview:yourName.view];
[yourName didMoveToParentViewController:self];