//Avoid applying dark mode
self.overrideUserInterfaceStyle = .light
This will always be in light mode (bright appearance).
This way you can easily avoid applying dark mode.
However, Apple recommends applying dark mode to iOS apps, so you need to apply the dark mode settings to your app at some point.
Treat this method as a temporary response!
Recommended Posts