我在呈现图像的故事板中有一个 ViewController,我希望有“下一个”和“上一个”按钮来移动包含不同图像的同一类的实例(10 个 viewController)。“第一个”实例是故事板的一部分,我手动编写了滚动条子视图的所有图像。现在的问题是如何正确添加手动 ViewController
- 我该如何处理?我一直在想,既然只有图像改变,我应该创建一个像“initWithImageArray”这样的实例方法吗?
- 我应该创建一个类实例的 MutableArray 吗?
如果是这样,有没有办法知道我是数组的哪个实例?所以我会知道什么时候“停止”而不显示“下一个”按钮或“上一个”按钮
VCDecorations *page1 = [self.storyboard instantiateViewControllerWithIdentifier:@"VCDecorations"]; VCDecorations *page2 = [self.storyboard instantiateViewControllerWithIdentifier:@"VCDecorations"]; VCDecorations *page3 = [self.storyboard instantiateViewControllerWithIdentifier:@"VCDecorations"]; DecoViewControllers = [[NSArray alloc]initWithObjects:page1,page2,page3, nil];
有没有知道我目前是在“page1”还是“page2”?
谢谢你。