我正在尝试读取用户设置的温度单位(摄氏度/华氏度)系统首选项。
我试图使用 NSLocale 获取这些数据,但我找不到任何温度设置的证据。

甚至可以读取这些数据吗?

谢谢!

最佳答案

官方 API 记录在 Preferences Utilities 下:

let key = "AppleTemperatureUnit" as CFString
let domain = "Apple Global Domain" as CFString

if let unit = CFPreferencesCopyValue(key, domain, kCFPreferencesCurrentUser, kCFPreferencesAnyHost) as? String {
    print(unit)
} else {
    print("Temperature unit not found")
}

如果你想知道我是如何找到它的,我在终端中使用了 defaults 实用程序:
> defaults find temperature
Found 1 keys in domain 'Apple Global Domain': {
    AppleTemperatureUnit = Fahrenheit;
}
Found 1 keys in domain 'com.apple.ncplugin.weather': {
    WPUseMetricTemperatureUnits = 1;
}

关于swift - 在 macOS 中获取用户首选温度设置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45511458/

10-13 06:34