菜鸟教程小白 发表于 2022-12-13 02:34:46

ios - iPad 横向显示纵向框架和边界


                                            <p><p>我正在使用 Storyboard 开发 iPad 横向应用程序。我已经完成了以下步骤。我的应用是在模拟器上以横向模式打开屏幕。但帧错误。</p>

<ol>
<li>来自 xcode 的 Storyboard示例应用模板。</li>
<li>只允许 info-plist 文件中的横向显示</li>
<li> Storyboard -> UIViewController -> 模拟矩阵 -> 将方向更改为横向</li>
<li><p>在view controller.m中实现下面的方法</p>

<pre><code>       - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
   // Return YES for supported orientations
   return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
      }
</code></pre> </li>
</ol>

<p>现在,当我获取框架的 NSLog 并设置边界时,它会显示纵向框架。</p>

<pre><code>   - (void)viewDidLoad
{
    ;
    // Do any additional setup after loading the view, typically from a nib.
    NSLog(@&#34;bounds ::%@&#34;,NSStringFromCGRect(self.view.bounds));
    NSLog(@&#34;frame ::%@&#34;,NSStringFromCGRect(self.view.frame));
   }
</code></pre>

<p>结果日志:</p>

<pre><code>   bounds ::{{0, 0}, {748, 1024}}

   frame ::{{20, 0}, {748, 1024}}
</code></pre>

<p>我错过了什么吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 viewDidLoad 方法中,您没有得到正确的界限。您在 viewDidAppear 方法中执行此操作。 viewDidAppear 方法在 View 完全加载并具有正确边界时调用。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iPad 横向显示纵向框架和边界,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16557427/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16557427/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iPad 横向显示纵向框架和边界