是否可以使用UIScrollViewController
滚动或“翻页”两个或更多来自的视图UIViewControllers
?示例(在 viewDidLoad 中)
self.a1 = [[CustomViewController1 alloc] init];
self.a2 = [[CustomViewController2 alloc] init];
//Scroller
self.scroller = [[UIScrollView alloc] initWithFrame:CGRectMake(0,0,1000,400
400)];
[self.scroller addSubview:self.a1.view];
[self.scroller addSubview:self.a2.view];
[self.view addSubview:self.scroller];
但我只能在滚动条中看到控制器 a2 的视图。