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

ios - Xamarin.forms,删除 iOS 10 中的状态栏


                                            <p><p>我在 <code>AppDelegate.FinishedLaunching</code> 中使用以下代码从我的 Xamarin 表单应用程序中删除 iOS 中的状态栏:</p>

<pre><code>UIApplication.SharedApplication.SetStatusBarHidden (true, UIStatusBarAnimation.None);
</code></pre>

<p>这确实移除了状态栏使用的空间,但状态栏的内容仍在呈现。</p>

<p>在此图像(我的应用程序处于纵向模式,亮度增强)的顶部,您可以看到时钟、电池指示器等。被绘制在我的应用程序上:</p>

<p> <a href="/image/wcOLO.png" rel="noreferrer noopener nofollow"><img src="/image/wcOLO.png" alt="status bar drawn on top of my app"/></a> </p>

<p>我该如何摆脱它?</p>

<p>这是 Forms 应用程序中的一个页面,它由一个 SKCanvasView 组成(如果相关的话)。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>将这些选项添加到您的 info.plist</p>

<pre><code>&lt;key&gt;UIStatusBarHidden&lt;/key&gt;
&lt;true/&gt;
&lt;key&gt;UIViewControllerBasedStatusBarAppearance&lt;/key&gt;
&lt;false/&gt;
</code></pre>

<p>或者</p>

<p> <a href="/image/3fwUG.png" rel="noreferrer noopener nofollow"><img src="/image/3fwUG.png" alt="enter image description here"/></a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Xamarin.forms,删除 iOS 10 中的状态栏,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/45785104/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/45785104/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Xamarin.forms,删除 iOS 10 中的状态栏