且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

是否可以在 iOS 13 上选择退出暗模式?

更新时间:2023-12-04 20:01:04

首先,这里是

通过窗口属性的整个应用程序窗口

您可以针对应用程序的 window 变量设置 overrideUserInterfaceStyle.这将适用于出现在窗口中的所有视图.这在 iOS 13 中可用,因此对于支持以前版本的应用,您必须包括可用性检查.

根据项目的创建方式,这可能位于 AppDelegateSceneDelegate 文件中.

if #available(iOS 13.0, *) {window?.overrideUserInterfaceStyle = .light}

单独的 UIViewController 或 UIView

您可以针对UIViewControllers 或UIViewoverrideUserInterfaceStyle 变量设置overrideUserInterfaceStyle.这在 iOS 13 中可用,因此对于支持以前版本的应用,您必须包括可用性检查.

迅捷

override func viewDidLoad() {super.viewDidLoad()//overrideUserInterfaceStyle 适用于 iOS 13如果#available(iOS 13.0,*){//始终采用轻量级的界面风格.overrideUserInterfaceStyle = .light}}

致那些在 Objective-C 中的可怜人

if (@available(iOS 13.0, *)) {self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;}

当针对 UIViewController 设置时,视图控制器及其子级采用定义的模式.

当针对 UIView 设置时,视图及其子视图采用定义的模式.

关于 overrideUserInterfaceStyle 的 Apple 文档

通过 SwiftUI 视图的个人视图

您可以将preferredColorScheme 设置为lightdark.提供的值将为演示文稿设置配色方案.

导入 SwiftUI结构内容视图:查看{var主体:一些视图{文本(仅浅色").preferredColorScheme(.light)}}

preferredColorScheme 的 Apple 文档

感谢 @Aron Nelson@Raimundas Sakalauskas@NSLeader@rmaddy 改进此答案与他们的反馈.

A large part of my app consists of web views to provide functionality not yet available through native implementations. The web team has no plans to implement a dark theme for the website. As such, my app will look a bit half/half with Dark Mode support on iOS 13.

Is it possible to opt out of Dark Mode support such that our app always shows light mode to match the website theme?

First, here is Apple's entry related to opting out of dark mode. The content at this link is written for Xcode 11 & iOS 13:

Entire app via info.plist file (Xcode 12)

Use the following key in your info.plist file:

UIUserInterfaceStyle

And assign it a value of Light.

The XML for the UIUserInterfaceStyle assignment:

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

Apple documentation for UIUserInterfaceStyle


Entire app via info.plist in build settings (Xcode 13)


Entire app window via window property

You can set overrideUserInterfaceStyle against the app's window variable. This will apply to all views that appear within the window. This became available with iOS 13, so for apps that support previous versions, you must include an availability check.

Depending on how your project was created, this may be in the AppDelegate or SceneDelegate file.

if #available(iOS 13.0, *) {
    window?.overrideUserInterfaceStyle = .light
}


Individual UIViewController or UIView

You can set overrideUserInterfaceStyle against the UIViewControllers or UIView's overrideUserInterfaceStyle variable. This became available with iOS 13, so for apps that support previous versions, you must include an availability check.

Swift

override func viewDidLoad() {
    super.viewDidLoad()
    // overrideUserInterfaceStyle is available with iOS 13
    if #available(iOS 13.0, *) {
        // Always adopt a light interface style.
        overrideUserInterfaceStyle = .light
    }
}

For those poor souls in Objective-C

if (@available(iOS 13.0, *)) {
        self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
}

When set against the UIViewController, the view controller and its children adopt the defined mode.

When set against the UIView, the view and its children adopt the defined mode.

Apple documentation for overrideUserInterfaceStyle


Individual views via SwiftUI View

You can set preferredColorScheme to be either light or dark. The provided value will set the color scheme for the presentation.

import SwiftUI

struct ContentView: View {
    var body: some View {
        Text("Light Only")
            .preferredColorScheme(.light)
    }
}

Apple documentation for preferredColorScheme


Credit to @Aron Nelson, @Raimundas Sakalauskas, @NSLeader and @rmaddy for improving this answer with their feedback.