菜鸟教程小白 发表于 2022-12-12 14:38:49

使用容器 View 时,ios7状态栏与工具栏重叠


                                            <p><p>我已阅读有关此问题的帖子,但没有发现任何工作,我认为这一定是因为我使用了工具栏并将 ViewController 嵌入到容器 View 中。状态栏总是重叠的。无论我是否尝试更换工具栏或在 IB 中设置不同的设置。似乎由于它位于容器 View 中,因此设置推断选项不起作用。我什至尝试在顶部放置两个工具栏,但只显示了这个。</p>

<p> <img src="/image/KTV2j.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>iOS 7 中的状态栏是透明的,所以如果你想拥有类似 iOS6 的外观,创建一个 20 像素的 View 并将其添加到你的“容器” View 中...</p>

<pre><code>UIView *statusBarView = [ initWithFrame: CGRectMake(0, 0, 320, 20)];
statusBarView.backgroundColor = ;
;
</code></pre>

<p>然后相应地设置“包含” ViewController 的框架</p>

<pre><code>containedViewController.frame = CGRectMake(0, 20, 320, itsCurrentHeight - 20);
</code></pre>

<p>这样状态栏就不会再与您的内容重叠了</p></p>
                                   
                                                <p style="font-size: 20px;">关于使用容器 View 时,ios7状态栏与工具栏重叠,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18835416/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18835416/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: 使用容器 View 时,ios7状态栏与工具栏重叠