Hello I would like to know if forcing my app to light mode by setting User Interface Style
to Light
in plist can result to the rejection of my app ??
Asked
Active
Viewed 453 times
1

Hach3m
- 71
- 6
1 Answers
2
The Official Documentation states:
Supporting Dark Mode is strongly encouraged. Use the UIUserInterfaceStyle key to opt out only temporarily while you work on improvements to your app's Dark Mode support.
So your app will not be rejected (yet) for using this key. Howver, you should start supporting dark mode.
Additional information can be found here: Is it possible to opt-out of dark mode on iOS 13?

inexcitus
- 2,471
- 2
- 26
- 41
-
1I read the documentation and I did not find anything that indicates that the app will be rejected if I use this property. But I found many people who have encountered this problem. After some research I think this rejection problem only occurs on xcode V10 and it is no longer occurred on version 11. – Hach3m Oct 16 '19 at 08:33