Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Xcode < 9.3 中,我们可以通过将顶栏模拟指标设置为None.
None
但现在在 9.3 中,将其设置为 时None,状态栏并没有隐藏。
任何想法如何隐藏它?
您需要将模拟指标大小设置为“自由格式”。接下来,您需要将视图的大小更改为某个自定义值。之后 Xcode 将隐藏状态栏。
在您的 info.plist 上为 statusBar Hidden 添加以下两个属性
查看基于控制器的状态栏外观(布尔值:否)
状态栏最初是隐藏的(布尔值:是)
按来源
<key>UIStatusBarHidden</key> <true/> <key>UIViewControllerBasedStatusBarAppearance</key> <false/>
或者