菜鸟教程小白 发表于 2022-12-12 16:53:14

ios - 如果自动布局打开,防止 UIScrollView 水平滚动


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

<p> <img src="/image/gVR2e.png" alt="enter image description here"/> </p>

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

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

<p> <img src="/image/6mi6K.png" alt="enter image description here"/> </p>

<p>在这里你可以看到我设置的约束:</p>

<p> <img src="/image/dxhci.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我想通了。我没有设置正确的约束,而是为 View 宽度创建了约束,为约束创建了一个 IBOutlet,并在代码中设置了约束的常量。</p>

<pre><code>- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration
{
    if (UIInterfaceOrientationIsLandscape(interfaceOrientation)) {

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

    } else {

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

<p>结果如下:</p>

<p> <img src="/image/u8OjW.png" alt="enter image description here"/> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如果自动布局打开,防止 UIScrollView 水平滚动,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20299767/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20299767/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如果自动布局打开,防止 UIScrollView 水平滚动