10

我有一个UIViewController,我想添加一个UIScrollView(启用滚动支持),这可能吗?

我知道这是可能的,如果你有 aUIScrollView添加UIViewController到它,但如果 reverse 是真的,我也很感兴趣,如果我不能将 a 添加UIScrollView到现有的UIViewController,这样我就可以获得滚动功能。

编辑

我想我找到了答案:将 UIViewController 添加到 UIScrollView

4

1 回答 1

22

UIViewController有一个view财产。因此,您可以在UIScrollViewview. 换句话说,您可以将滚动视图添加到视图层次结构中。

这可以通过代码或通过 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];

您还可以覆盖类的loadView方法UIViewController并将滚动视图设置为您正在考虑的控制器的主视图。

编辑

我为你创建了一个小样本。在这里,您有一个滚动视图作为 a 视图的子视图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

PS这里我使用ARC。如果不使用 ARC,则需要显式分配release初始化对象。

于 2012-12-27T14:12:44.653 回答