I read Apple Article for disable Dark Mode because I need disable for my all UIViewController and i haven't any BaseUIViewController.
How can I disable Dark Mode for all UIViewController without using any BaseUIViewController? I don't want to write the following code over and over again.
Is there a solution to this?
override func viewDidLoad() {
super.viewDidLoad()
// Always adopt a light interface style.
overrideUserInterfaceStyle = .light
}