macos 中的 macbook 信息 swift

macbook information in macos swift

我正在构建一个 macOS 应用程序。我需要在其中检索

之类的信息

& 等。是否可以在 macOS 中检索信息。如果可能,那么我们如何在 swift macOS 应用程序中执行此操作?

您可以使用的名称:

if let deviceName = Host.current().localizedName {
   print(deviceName)
}

对于系统:

var systemVersion = NSProcessInfo.processInfo().operatingSystemVersion

对于 Apple Id,我一点也不确定,但我猜你不能因为安全问题而被问到。你需要检查一下我不知道。

你可以使用这样的名称

if let deviceName = Host.current().localizedName {
       print(deviceName)
    }

mac 上的 apple id 我不确定但是 iphone 上是 UIDevice.current.identifierForVendor?.uuidString 你可以搜索它或者试试这个,我从来没有开发过 mac预订应用程序

var systemVersion = NSProcessInfo.processInfo().operatingSystemVersion 

适用于 os 版本