So ... I\'ve tried to set my app to disable iOS 13 dark mode by forcing light mode according apple documentation, in the emulator all attempts work fine, but when I try on the r
if #available(iOS 13, *) { window.overrideUserInterfaceStyle = .light }
Should work. Call it in your AppDelegate's didFinishLaunchingWithOptions.
AppDelegate
didFinishLaunchingWithOptions