Reputation: 13853
I only have this issue in my iPhoneX, as we can see in the picture above, in the top right corner, in the left side of signal icon we can see 4 dots.
but in the iphone 6 like the picture below and other, I have no issue for this
I don't think I give a setting and autolayout for that section. I only give this code in the appdelegate to make the signal, time and battery icon to be white
in 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
}
I want to remove that 4 dots, how to do that?
Upvotes: 0
Views: 9976
Reputation: 1
It's actually not an issue. That’s usually where the cellular signal strength is displayed. In case you don't have any signal it will show just four dots, as mentioned here.
Upvotes: 0