作者:朱志铭贤雯 | 来源:互联网 | 2023-06-30 12:53
在您的应用程序委托中。只需转到func:
func application(_ application: UIApplication,didFinishlaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool
{
if #available(iOS 13.0,*) {
window?.overrideUserInterfaceStyle = .light
}
return true
}
任何建议。...
您可以在info.plist
中进行操作:
键:UIUserInterfaceStyle
字符串:Light
,
打开info.plist作为源代码并添加以下内容:
UIUserInterfaceStyle
Light
,
使用以下代码编辑AppDelegate
。
func application(_application:UIApplication,didFinishLaunchingWithOptions launchOptions[UIApplication.LaunchOptionsKey: Any]?) -> Bool
{
if #available(iOS 13.0,*) {
window?.overrideUserInterfaceStyle = .light
}
return true
}