菜鸟教程小白 发表于 2022-12-12 09:57:38

ios - 如何使用 Objective C 根据设备方向更改 UIView 约束?


                                            <p><p>我正在尝试为 <code>portrait</code> 和 <code>landscape</code> 创建具有多个 View 的 <code>iOS</code> <code>storyboard</code>。我创建的所有 Storyboard <code>constraints</code> 和 <code>autolayout</code>。</p>

<p>现在我的问题是肖像我需要显示如下肖像图像。这就是我通过使用 Storyboard 约束完成的。</p>

<p>对于横向需要显示 <code>First View (red)</code> 和底部栏只有其他我已通过硬编码隐藏。但是我不知道如何将红屏首先查看全高扩展到底栏顶部。</p>

<p>注意:这是通用应用程序。</p>

<pre><code>- (void) orientationChanged:(NSNotification *)note
{
    UIDevice * device = note.object;
    switch(device.orientation)
    {
      case UIDeviceOrientationPortrait:
            /* start special animation */
            NSLog(@&#34;Portrait&#34;);
            self.namelist_tableview.hidden = NO;// ORANGE VIEW
            break;

      case UIDeviceOrientationLandscapeRight:
            /* start special animation */
            NSLog(@&#34;Landscape&#34;);
            self.namelist_tableview.hidden = YES;// ORANGE VIEW
            break;

      case UIDeviceOrientationLandscapeLeft:
            /* start special animation */
            NSLog(@&#34;Landscape&#34;);
            self.namelist_tableview.hidden = YES;// ORANGE VIEW
            break;

      default:
            break;
    };
}
</code></pre>

<p> <a href="/image/v5xFI.png" rel="noreferrer noopener nofollow"><img src="/image/v5xFI.png" alt="enter image description here"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>很简单,在interfacebuilder中为纵向模式添加约束,
为横向模式添加约束。
接下来为所有约束创建一个导出。
在设备更改方向事件中执行此操作</p>

<p><strong>如果您处于横向模式</strong></p>

<p>+将纵向的事件约束设置为 false (constraint.active = NO)</p>

<p>+将横向约束的事件设置为 true (constraint.active = YES)</p>

<p><strong>如果您处于纵向模式</strong></p>

<p>+将横向约束的事件设置为 false (constraint.active = NO)</p>

<p>+将肖像的约束设置为true(constraint.active = YES)</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用 Objective C 根据设备方向更改 UIView 约束?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34202300/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34202300/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用 Objective C 根据设备方向更改 UIView 约束?