gpt4 book ai didi

macos - 获取 OS X 上的型号标识符字符串

转载 作者:行者123 更新时间:2023-12-03 16:08:11 25 4
gpt4 key购买 nike

每台 Mac 都有一个型号标识符,例如“Macmini5,1”。 (这些显示在“系统信息”应用程序中。)

enter image description here

如何以编程方式获取此模型标识符字符串?

最佳答案

使用 IOKit 的 Swift 4+

import IOKit

func getModelIdentifier() -> String? {
let service = IOServiceGetMatchingService(kIOMasterPortDefault,
IOServiceMatching("IOPlatformExpertDevice"))
var modelIdentifier: String?
if let modelData = IORegistryEntryCreateCFProperty(service, "model" as CFString, kCFAllocatorDefault, 0).takeRetainedValue() as? Data {
modelIdentifier = String(data: modelData, encoding: .utf8)?.trimmingCharacters(in: .controlCharacters)
}

IOObjectRelease(service)
return modelIdentifier
}

关于macos - 获取 OS X 上的型号标识符字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20070333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com