MAC 系统信息的获取

作者: vicxxc | 来源:发表于2016-08-26 14:44 被阅读112次

在项目中引入IOKit.framework来替换AppleAHCIDiskDriver字符串来获取相应的信息,所有的Key 在IOKit/IOKitKeys.h中都有定义

- (void)iotest
{
    io_iterator_t iterator;
    kern_return_t kr;
    io_object_t   driver;
    
    CFMutableDictionaryRef matchDictionary = IOServiceMatching("AppleAHCIDiskDriver");
    kr = IOServiceGetMatchingServices(kIOMasterPortDefault, matchDictionary, &iterator);
    if (kr != kIOReturnSuccess)
    {
        return;
    }
    
    while ((driver = IOIteratorNext(iterator)) != 0)
    {
        CFMutableDictionaryRef properties = NULL;
        kr = IORegistryEntryCreateCFProperties(driver,
                                               &properties,
                                               kCFAllocatorDefault,
                                               kNilOptions);
        if (kr != kIOReturnSuccess || properties == NULL)
        {
            continue;
        }
        
        NSLog(@"%@",(__bridge NSDictionary*)properties);
    }
}

其中AppleAHCIDiskDriver 这个key可以通过IORegistryExplorer工具看到更多更详细的Key,而设备基本信息可以通过IOPlatformExpertDevice获取.

相关文章

网友评论

  • 或许命中注定:楼主,获取网卡信息会不会
  • 伊织随意写:while ((driver = IOIteratorNext(iterator)) != 0)

    这句是什么意思? driver 没被赋值,为什么要跟他做比较?
  • L柠_檬:这个干嘛用的?

本文标题:MAC 系统信息的获取

本文链接:https://www.haomeiwen.com/subject/nrfzsttx.html