gpt4 book ai didi

macos - 有没有办法根据型号获取 Mac 的图标?

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

我知道你可以使用以下代码从 cocoa 获取当前机器的图标:

NSImage *machineIcon = [NSImage imageNamed:NSImageNameComputer];

但是仅给出型号就可以获得图标吗?如MacBookPro11,3

我需要这个的原因是因为我正在使用 MultiPeer Connectivity浏览网络上我想要连接的设备。但我想在自定义的浏览器 View 中显示这些设备的图标。

我知道 OS X 几乎在以下文件夹中拥有所有设备的所有图标:

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/

但我想知道如何从我的应用程序内访问它们:

我考虑过使用discoveryInfo来自MCNearbyServiceAdvertiser传输设备广告的图标,但您无法使用 discoveryInfo 传输那么多数据。它仅针对少量文本而设计。所以我决定只传输机器的型号。我希望将机器的型号解析为另一侧的图标。有点像AirDrop做到了。

最佳答案

  1. Mac App Store 安全

手动将模型标识符映射到图标名称,然后使用例如

[[NSWorkspace sharedWorkspace] iconForFileType:@"com.apple.macbookair"];

 [NSImage imageNamed:NSImageNameComputer]

如果您需要比 imageNamed 提供的更高的分辨率,请使用

  OSType code = UTGetOSTypeFromString((CFStringRef)CFSTR("root"));
NSImage *computer = [[NSWorkspace sharedWorkspace] iconForFileType:NSFileTypeForHFSTypeCode(code)];

其中“root”字符串来自 IconsCore.h 头文件 (kComputer)。

复制此 plist 以获取标识符(不要从应用程序沙箱访问它)

/System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Resources/English.lproj/SIMachineAttributes.plist

  • Mac App Store 不安全
  • 将私有(private)框架 SPSupport.Framework 与您的二进制文件链接添加FrameWork Search路径变量

    $(SYSTEM_LIBRARY_DIR)/PrivateFrameworks

    将以下接口(interface)添加到您的项目中

    #import <Cocoa/Cocoa.h>

    @interface SPDocument : NSDocument

    - (NSImage *)modelIcon;
    - (id)computerName;
    - (id)serialNumber;
    - (id)modelName;

    @end

    调用您的代码:

      SPDocument *document = [[SPDocument alloc] init];
    NSImage *icon = [document modelIcon];
  • 最难的方法
  • 弄清楚 CoreFoundation 与这个私有(private)函数的舞蹈(此代码是示例,找到正确的类型、参数数量并正确释放)

      output = _LSCreateDeviceTypeIdentifierWithModelCode((CFStringRef)@"MacBookPro6,2");
    NSImage *image = [[NSWorkspace sharedWorkspace] iconForFileType: output];

    编辑:我刚刚意识到您需要选项号 1,3(给定型号的图标)。 GL 对此进行了斗争。

    编辑2添加了方法3。更改了顺序并添加到编号 1 下。

    编辑3彩色版本的新 UTIcom.apple.macbook-retina-silvercom.apple.device-model-codeMacBook8,1@ECOLOR=225,225,223

    com.apple.macbook-retina-goldcom.apple.device-model-codeMacBook8,1@ECOLOR=235,215,191

    com.apple.macbook-retina-space-graycom.apple.device-model-codeMacBook8,1@ECOLOR=155,158,159MacBook8,1@ECOLOR=157,157,160

    NSImage *image =[[NSWorkspace共享工作空间] iconForFileType:@"com.apple.macbook-retina-gold"];

    如何获取型号/标识符(sysctl hw.model 已被 system_profiler 取代)?

    NSPipe *outputPipe = [NSPipe pipe];
    NSTask *task = [[NSTask alloc] init];
    [task setLaunchPath:@"/usr/sbin/system_profiler"];
    [task setArguments:@[@"SPHardwareDataType"]];
    [task setStandardOutput:outputPipe];
    [task launch];
    [task waitUntilExit];
    NSData *outputData = [[outputPipe fileHandleForReading] readDataToEndOfFile];
    NSString *hardware = [[NSString alloc] initWithData:outputData encoding:NSUTF8StringEncoding];

    并解析模型标识符或您的属性列表序列化

    关于macos - 有没有办法根据型号获取 Mac 的图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32370037/

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