OStack程序员社区-中国程序员成长平台

标题: ios - 如果自动布局打开,防止 UIScrollView 水平滚动 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 16:53
标题: ios - 如果自动布局打开,防止 UIScrollView 水平滚动

我有这个带有自动布局的 ScrollView 。 ScrollView 具有蓝色。在横向模式下看起来不错。

enter image description here

但在 portrait 模式下,我不会让水平滚动,而是用橙色减小 View 的宽度,以保持与右边缘的 20px 距离。

怎么样?我也在右侧设置了 20px 约束,但是旋转时 contentSize 不会更新。我知道在自动布局的情况下,我不允许以编程方式设置 contentSize。

enter image description here

在这里你可以看到我设置的约束:

enter image description here



Best Answer-推荐答案


我想通了。我没有设置正确的约束,而是为 View 宽度创建了约束,为约束创建了一个 IBOutlet,并在代码中设置了约束的常量。

- (void)willAnimateRotationToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation durationNSTimeInterval)duration
{
    if (UIInterfaceOrientationIsLandscape(interfaceOrientation)) {

        //self.scrollView.contentSize = CGSizeMake(944, 1600);
        _viewWidthConstrain.constant = 944;

    } else {

        //self.scrollView.contentSize = CGSizeMake(500, 1600);
        _viewWidthConstrain.constant = 500;
    }
}

结果如下:

enter image description here

关于ios - 如果自动布局打开,防止 UIScrollView 水平滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20299767/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4