菜鸟教程小白 发表于 2022-12-13 06:02:05

ios - 仅在 UIWebView 上允许方向/旋转更改


                                            <p><p>我有一个用代码创建的 <code>UIWebView</code>,我正在使用 <code>initWithFrame</code> 来定义启动大小。默认情况下,当我旋转设备时,不会旋转任何东西,并且方向与启动时相同。</p>

<p>该应用程序基于 <code>UITabController</code> 并且 Controller 中的所有选项卡都没有显示 <code>UIWebViews</code> 并且那里 <strong>我不想</strong> 想要允许整个应用旋转。</p>

<p>所以我有两个问题。</p>

<ul>
<li>是否可以只允许旋转 UIWebView 的内容?</li>
<li>如果上述方法不可行,如何在旋转时移除 TabBar(应用委托(delegate)?),是否需要刷新 UIWebView 的内容以跨越窗口?</li>
</ul></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当我想在横向模式下全屏显示图像时遇到了类似的问题,并且它是纵向模式下的默认位置。由于我的应用程序包含一个 TabBarController,每个选项卡都显示一个导航 Controller ,因此我必须使用“willAnimateRotationToInterfaceOrientation”来移动自己周围的东西,以获取包含图像的 View 。 </p>

<p>在我的应用程序中,标签栏 Controller 将在所有方向上显示,除了纵向倒置。如果您将标签栏 Controller 锁定到一个方向,我相信您也会锁定标签栏中的所有后续 View 。本质上,我隐藏了状态栏、导航栏和标签栏,同时将导航栏向上移出视野,将标签栏向下移出视野,并调整中间内容的大小。这是我所做的一个示例,假设您有 self.WebView (例如,那将是我的图像):</p>

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

float navBarHeight = self.navigationController.navigationBar.frame.size.height;
float tabBarHeight = ((UITabBarController *)self.navigationController.parentViewController).tabBar.frame.size.height;

if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight)
{
    float statusBarHeight = .statusBarFrame.size.height;
    [ setStatusBarHidden:YES];
    self.navigationController.navigationBar.hidden = YES;
    ((UITabBarController *)self.navigationController.parentViewController).tabBar.hidden = YES;

    // TabBarController adjustments
    self.navigationController.parentViewController.view.bounds = CGRectMake(0, -tabBarHeight/2, 480, 320 + tabBarHeight);

    // Adjust view
    self.view.frame = CGRectMake(0, -statusBarHeight - navBarHeight, 480, 320);

    // Adjust web view
    self.WebView.frame = CGRectMake(26, 0, 426.6667, 320);
}

if (interfaceOrientation == UIInterfaceOrientationPortrait)
{
    [ setStatusBarHidden:NO];
    float statusBarHeight = .statusBarFrame.size.height;
    self.navigationController.navigationBar.hidden = NO;
    ((UITabBarController *)self.navigationController.parentViewController).tabBar.hidden = NO;

    // TabBarController adjustments
    self.navigationController.parentViewController.view.bounds = CGRectMake(0, 0, 320, 480);

    // NavigationController adjustments
    self.navigationController.navigationBar.frame = CGRectMake(0, statusBarHeight, 320, navBarHeight);

    // Adjust view
    self.view.frame = CGRectMake(0, statusBarHeight + navBarHeight, 320, 480 - statusBarHeight - navBarHeight - tabBarHeight);

    // Adjust web view
    self.WebView.frame = CGRectMake(0, 0, 320, 240);
}
}
</code></pre>

<p>我相信通过调整 webview 的大小,它应该会自动适本地适应内容,而无需“刷新”本身。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 仅在 UIWebView 上允许方向/旋转更改,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4259022/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4259022/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 仅在 UIWebView 上允许方向/旋转更改