菜鸟教程小白 发表于 2022-12-12 15:52:26

iphone - UIViewController 横向模式按钮不工作


                                            <p><p>我正在尝试让一个应用程序在横向模式下工作,我已经快完成了,但由于某种原因,我 View 中的按钮无法正常工作(即,它们没有按下)。我正在使用一个 Root ViewController ,它按如下方式加载初始 ViewController :</p>

<pre><code>      - (void)viewDidLoad
{

      ;

      StartViewController *viewController = [ initWithNibName:@&#34;StartView&#34; bundle:nil];
      self.startViewController = viewController;
      startViewController.delegate = self;
      ;

      ;
    }
</code></pre>

<p>我还在我的 Info.plist 文件中设置了初始界面方向值,并在我的 Root ViewController 中覆盖了以下内容:</p>

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

<p> View 加载正常并在横向模式下按应有的方式填满屏幕,但由于某种原因我无法按 View 上的任何按钮。</p>

<p>我确信这与我使用 Root ViewController 有关,因为在使用只有一个 ViewController 的应用程序之前,我已经设法让它正常工作。 </p>

<p>有人可以帮我吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我觉得问题出在xib的某个地方。
例如。按钮放置在 <code>UIView</code> 上且调整大小不正确。因此在横向模式下按钮出现在 View 之外,并且触摸无法到达按钮。您可以检查它在所有父 View 中设置 <code>clipSubviews</code> - 如果我是对的,您将不会再看到该按钮。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - UIViewController 横向模式按钮不工作,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4820991/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4820991/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - UIViewController 横向模式按钮不工作