UIViewController 具有 view 属性。因此,您可以将UIScrollView 添加到其view。换句话说,您可以将滚动视图添加到视图层次结构中。
这可以通过代码或通过 XIB 来实现。此外,您可以将视图控制器注册为滚动视图的委托。通过这种方式,您可以实现用于执行不同功能的方法。请参阅UIScrollViewDelegate 协议。
// create the scroll view, for example in viewDidLoad method
// and add it as a subview for the controller view
[self.view addSubview:yourScrollView];
您还可以覆盖UIViewController 类的loadView 方法,并将滚动视图设置为您正在考虑的控制器的主视图。
编辑
我为您创建了一个小样本。在这里,您有一个滚动视图作为UIViewController 视图的子视图。滚动视图有两个子视图:view1(蓝色)和view2(绿色)。
在这里,我想您只能在一个方向上滚动:水平或垂直。在下面,如果您水平滚动,您可以看到滚动视图按预期工作。
- (void)viewDidLoad
{
[super viewDidLoad];
UIScrollView* scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)];
scrollView.backgroundColor = [UIColor redColor];
scrollView.scrollEnabled = YES;
scrollView.pagingEnabled = YES;
scrollView.showsVerticalScrollIndicator = YES;
scrollView.showsHorizontalScrollIndicator = YES;
scrollView.contentSize = CGSizeMake(self.view.bounds.size.width * 2, self.view.bounds.size.height);
[self.view addSubview:scrollView];
float width = 50;
float height = 50;
float xPos = 10;
float yPos = 10;
UIView* view1 = [[UIView alloc] initWithFrame:CGRectMake(xPos, yPos, width, height)];
view1.backgroundColor = [UIColor blueColor];
[scrollView addSubview:view1];
UIView* view2 = [[UIView alloc] initWithFrame:CGRectMake(self.view.bounds.size.width + xPos, yPos, width, height)];
view2.backgroundColor = [UIColor greenColor];
[scrollView addSubview:view2];
}
如果你只需要垂直滚动你可以改变如下:
scrollView.contentSize = CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height * 2);
显然,你需要重新排列view1和view2的位置。
附:这里我使用 ARC。如果不使用 ARC,则需要显式地release alloc-init 对象。