ios13:我想在我的应用程序中获取选定的设备模式(暗模式/亮模式)

时间:2019-10-08 17:44:31

标签: swift ios13 ios-darkmode

当前,我已在iPhone中启用了暗模式。 但是UITraitCollection.current.userInterfaceStyle始终将当前模式返回为“未指定”。

我想获取当前选择的设备/系统/操作系统模式。

if UITraitCollection.current.userInterfaceStyle == .dark {
        print("Yes dark mode")
      } else {
        print("Not dark mode")
      }```

0 个答案:

没有答案