菜鸟教程小白 发表于 2022-12-12 12:17:19

ios - 导航栏的背景图片错误


                                            <p><p>我在 iOS 8 中遇到了这个问题,其中导航栏的背景图像在以下任何一种情况下都会显示错误:</p>

<ul>
<li>基于 ViewController 的状态栏外观设置为 <code>YES</code>(默认),并且导航 Controller 以模态方式呈现。</li>
<li>基于 ViewController 的状态栏外观设置为<code>NO</code>,并且状态栏最初是隐藏的。在这种情况下,导航 Controller 不需要以模态方式呈现来显示错误的图像。 </li>
</ul>

<p>为了隔离基于 ViewController 的状态栏外观设置为 YES(默认)并且导航 Controller 以模态方式呈现的问题,我按照以下步骤从头开始创建了一个测试项目:</p>

<ol>
<li><p>使用“Master-Detail Application”模板创建一个新项目。</p></li>
<li><p>打开 <code>Main.storyboard</code> 并向其中添加一个导航 Controller 。移除它的 Root ViewController 并用 <strong>modal segue</strong> 连接主视图 Controller 。然后连接细节 ViewController 作为它的 Root ViewController 。你应该得到这样的结果:</p></li>
</ol>

<p> <img src="/image/Gj1Xz.png" alt="enter image description here"/> </p>

<ol 开始=“3”>
<li><p>通过外观代理自定义导航栏背景。为纵向 (<code>UIBarMetricsDefault</code>) 和横向 (<code>UIBarMetricsCompact</code>) 使用两个不同的图像。我在 <code>UIImage</code> 上使用了一个类别来从纯色创建图像。</p>

<pre><code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    [ setBackgroundImage:] forBarMetrics:UIBarMetricsDefault];
    [ setBackgroundImage:] forBarMetrics:UIBarMetricsCompact];

    return YES;
}
</code></pre> </li>
<li><p>运行应用程序。主视图 Controller 为纵向和横向显示右侧导航栏背景图像:</p></li>
</ol>

<p> <img src="/image/UecAK.png" alt="enter image description here"/> </p>

<p> <img src="/image/y1CNn.png" alt="enter image description here"/> </p>

<ol start="5">
<li><p>现在以模态方式呈现细节 ViewController 。为此,请点击“添加”按钮,然后选择新创建的行。详细 ViewController 显示<strong>右</strong>导航栏背景图像。</p></li>
<li><p>旋转界面。详细 ViewController 将<strong>不会</strong>更改导航栏背景图像(<strong>错误</strong>):</p></li>
</ol>

<p> <img src="/image/XZoTQ.png" alt="enter image description here"/> </p>

<ol 开始 =“7”>
<li>将界面旋转回原来的方向。详细 ViewController 将更改导航栏背景图像(<strong>错误</strong>):</li>
</ol>

<p> <img src="/image/GsPjU.png" alt="enter image description here"/> </p>

<p>还有其他人为此苦苦挣扎吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的,我一直在为此苦苦挣扎,在目标的 plist 文件中添加 <code>"View controller-based status bar appearance"</code> 后,它在 iOS 8 上再次运行,记得将其设置为 <code>否</code>。</p>

<p>在 MasterViewController 中,添加此项以避免 detailViewController 关闭时出现错误的背景图像。它基本上再次设置了相同的外观。</p>

<pre><code>- (void)viewDidAppear:(BOOL)animated
{
    ;
    [ setBackgroundImage:] forBarMetrics:UIBarMetricsDefault];
    [ setBackgroundImage:] forBarMetrics:UIBarMetricsCompact];
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 导航栏的背景图片错误,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26575546/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26575546/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 导航栏的背景图片错误