如何去除导航栏上方信号符号附近的4个点?

问题描述 投票:0回答:1

我只有我的iPhoneX有这个问题,如上图所示,在右上角,信号图标的左侧我们可以看到4个点。

但在 iPhone 6 中,如下图所示,我对此没有任何问题

我认为我没有为该部分提供设置和自动布局。我只在appdelegate中给出这段代码,以使信号、时间和电池图标变成白色

在应用程序委托中

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

        // to make status bar in the light mode (in info.plist it also has to be set 'View controller-based status bar appearance' to NO)

        UIApplication.shared.statusBarStyle = .lightContent


        return true
    }

我想去掉那4个点,该怎么做?

ios ios-simulator iphone-x
1个回答
0
投票

其实这不是问题。这通常是显示蜂窝信号强度的地方。如果您没有任何信号,它只会显示四个点,如此处提到

© www.soinside.com 2019 - 2024. All rights reserved.