2

所以我在 UIViewController 的 UIView 中有一个 UIScrollView ,我在其中添加了一个 UIView ,并且我希望它始终保持在底部,无论方向如何变化。所以我有以下内容:

在此处输入图像描述

问题是当我旋转到横向时,滚动视图内容大小高度肯定会大于框架高度,因此它会向下滚动。但是,我想贴在底部的这个 UIView 并没有粘住。无论方向如何变化,我如何使它始终粘在底部。

当我禁用 UIScrollView 自动调整子视图时,此 UIView 粘在底部,但旋转时宽度不会调整

4

2 回答 2

2

您应该尝试以下列方式使用自动调整大小的蒙版

yourview.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin;

使用编码或在 IB 中添加上、左、下和右边距的灵活性。

或者根据您的要求在 willRotateToInterfaceOrientation 方法中放置视图。

于 2012-10-16T12:05:48.230 回答
1

您必须根据orientations以下示例调整框架 -

-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration 
{
    if(toInterfaceOrientation == UIInterfaceOrientationPortrait || toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
    {
        //set your portrait frame here and also the content size of scrollView
    }
    else
    {
        //set your Landscape frame here and also the content size of scrollView
    } 
}
于 2012-10-13T05:23:05.613 回答