After upgrading to Xcode 11, some of my apps stopped showing texts. I can see images, buttons, etc but almost no texts. Any ideas?
Asked
Active
Viewed 88 times
1 Answers
0
Dark Mode is the answer. Dark Mode is enabled by default. If you want to disable it, add the following to you Info.plist:
<key>UIUserInterfaceStyle</key>
<string>light</string>
Beware, though: as mentioned here, "Currently, Dark Mode support is not required by Apple for an app submit, but this can be required soon.". And also "If your app doesn’t support dark mode, users may dislike your app, which can result in a bad rating.".
Cheers!

Leandro Fournier
- 927
- 1
- 9
- 21
-
Why disable dark mode? Why not fix the color of your labels? – rmaddy Sep 26 '19 at 15:42
-
@rmaddy because someone, like me, might have lots of apps, with some deprecated code and, might need to make a quick release to fix bugs regarding iOS 13. Besides, Apple says that your app might not need to use dark mode. – Leandro Fournier Sep 26 '19 at 18:25