ios 如何删除4点附近的信号符号在上面的我的导航栏?

x6yk4ghg  于 2023-06-25  发布在  iOS
关注(0)|答案(1)|浏览(96)

我只有这个问题在我的iPhoneX,正如我们可以看到上面的图片,在右上角,在信号图标的左侧,我们可以看到4个点.
但在iPhone 6像下面的图片和其他,我对这个

没有问题
我不认为我给予给那个部分设置和自动排版。我只在AppDelegate中给予这个代码,使信号、时间和电池图标变成白色
在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
    }

我想去掉这四个点,怎么做?

tsm1rwdh

tsm1rwdh1#

其实这不是问题这通常是手机信号强度显示的地方。如果你没有任何信号,它将只显示四个点,如mentioned here

相关问题