iOS13禁用深色模式

全局禁用深色模式(暗黑模式)
在Info.plist中增加UIUserInterfaceStyle,值为Light,如下

<key>UIUserInterfaceStyle</key>
<string>Light</string>

 

BY: Chu