导航栏上方的黑条

发布于 2024-12-01 17:16:11 字数 167 浏览 0 评论 0原文

我正在创建一个应用程序,该应用程序对几个视图使用导航控制器。当我最终弄清楚如何设置它时,发生了这种情况:

所以显然顶部的黑条不应该是在那里,但我不知道该怎么做才能摆脱它。有什么想法吗?

Im creating an app that uses a navigation controller for a couple of the views. When i finally figured out how to set it up this happened:

So obviously the black bar at the top is not supposed to be there, but i dont know what to do to get rid of it. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

救星 2024-12-08 17:16:11

以编程方式设置视图时,这种情况也很常见。请务必使用:

myView.frame = self.view.bounds;

而不是:

myView.frame = self.view.frame;

This is also commonly seen when setting up a view programmatically. Be sure to use:

myView.frame = self.view.bounds;

and not:

myView.frame = self.view.frame;
淡淡離愁欲言轉身 2024-12-08 17:16:11

看起来你的观点认为它应该有一个状态栏。进入 XIB 文件,然后在 Simulated Metrics 的第四个选项卡下将 Status Bar 设置为 None。

Looks like your view thinks it's supposed to have a status bar. Go into the XIB file and under the fourth tab in Simulated Metrics set Status Bar to None.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文