How to resolve this issue warning issue
UIApplication.shared.statusBarStyle = .lightContent
Warning Messages
'statusBarStyle' was deprecated in iOS 13.0: Use the statusBarManager property of the window scene instead.
How to resolve this issue warning issue
UIApplication.shared.statusBarStyle = .lightContent
Warning Messages
'statusBarStyle' was deprecated in iOS 13.0: Use the statusBarManager property of the window scene instead.
Copyright © 2021 Jogjafile Inc.
Use the
statusBarManager(UIStatusBarManager):Overwrite the
preferredStatusBarStylein your view controller and do this:You can have a
BaseViewController: UIViewController {}class that controls that and make that all your VCs inherit from it.