菜鸟教程小白 发表于 2022-12-13 09:28:56

ios - PhoneGap 上的 childBrowser 仅纵向显示


                                            <p><p>我正在为 iOS 5.0、XCODE 4.2、phonegap 1.1.0 使用 childbrowser,我只能在纵向模式下将其拉起。我的应用程序支持所有 4 个 View ,但是当我选择一个时,我的浏览器仅处于纵向模式。我确实收到此错误消息:</p>

<p> ViewController 从 -shouldAutorotateToInterfaceOrientation: 返回 NO,用于所有界面方向。它应该至少支持一个方向。</p>

<p>但我对 xcode 知之甚少 - 所以我无法解决这个问题 :(</p>

<p>帮助</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我遇到了同样的问题,如果您查看 ChildBrowserViewController 有一个名为 shouldAutorotateToInterfaceOrientation 的函数。</p>

<p>前几行查看支持的方向配置,但仅当您有多个方向设置时它才会旋转。我只有横向设置,所以它没有这样做。</p>

<p>如果你将 autoRotate 设置为 YES 或者注释掉 ifblock ,它会检查当前方向是否被支持,如果支持就会旋转到它。</p>

<pre><code>- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation
{
    //BOOL autoRotate = &gt; 1; // autorotate if only more than 1 orientation supported
    //if (autoRotate)
    //{
      if ([self.supportedOrientations containsObject:
             ]) {
            return YES;
      }
    //}

    return NO;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - PhoneGap 上的 childBrowser 仅纵向显示,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7817253/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7817253/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - PhoneGap 上的 childBrowser 仅纵向显示