Reputation: 1321
I only need the light mode on my current app. So I have override the interface style with overrideUserInterfaceStyle = .light
but launch screen can not be programmatically modified.
How could I override the launch screen interface style of a launch screen on iOS13?
Upvotes: 0
Views: 261
Reputation: 318794
In your launch screen, only use non-dymanic colors. For example, use "black" instead of "label" or "Default". Use white
instead of "systemBackground" or "Default".
Upvotes: 1