当前位置:  开发笔记 > IOS > 正文

如何在Mac OS X中获取存储设备的图标?

如何解决《如何在MacOSX中获取存储设备的图标?》经验,为你挑选了1个好方法。

我发现我的设备使用IOServiceGetMatchingServices并获得了这样的属性字典:

kernResult = IORegistryEntryCreateCFProperties(nextMedia,
                    (CFMutableDictionaryRef *)&props,
                                              kCFAllocatorDefault, 0);

从那个字典我可以提取图标的信息:

NSString *bId = [props valueForKeyPath:@"IOMediaIcon.CFBundleIdentifier"];
NSString *rFile = [props valueForKeyPath:@"IOMediaIcon.IOBundleResourceFile"];

这两个人给我这个(作为一个例子):

com.apple.iokit.IOStorageFamily   (Bundle identifier)
Internal.icns                     (Resource File)

我尝试使用此方法提取图标:

NSBundle *bundleWithIcon = [NSBundle bundleWithIdentifier:bId];
NSString *iconPath = [bundleWithIcon pathForResource:rFile ofType:nil];

不过bundleWithIconnil.

这甚至是获取图标的正确方法吗?

我想我必须以某种方式加载捆绑包才能加载它bundleWithIdentifier,我该怎么做?

PS:还有一个问题(我认为)试图提出同样的问题,但只要求捆绑,而不是这是正确的方法.



1> Jesús A. Álv..:

您可以使用NSWorkspace.
初始图像为32x32,但它具有其他尺寸的表示,并将相应缩放

NSWorkspace * ws = [NSWorkspace sharedWorkspace];
NSImage * icon = [ws iconForFile:@"/Volumes/Whatever"];
NSLog(@"%@", [icon representations]); // see what sizes the icon has
icon.size = NSMakeSize(512, 512);

推荐阅读
李桂平2402851397
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有