如何在运行时可以获得iOS设备CPU架构

前端之家收集整理的这篇文章主要介绍了如何在运行时可以获得iOS设备CPU架构前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在运行时识别iOS设备的cpu架构?

谢谢.

解决方法

您可以使用sysctlbyname:
#include <sys/types.h>
#include <sys/sysctl.h>
#include <mach/machine.h>

NSString *getcpuType(void)
{
    NSMutableString *cpu = [[NSMutableString alloc] init];
    size_t size;
    cpu_type_t type;
    cpu_subtype_t subtype;
    size = sizeof(type);
    sysctlbyname("hw.cputype",&type,&size,NULL,0);

    size = sizeof(subtype);
    sysctlbyname("hw.cpusubtype",&subtype,0);

    // values for cputype and cpusubtype defined in mach/machine.h
    if (type == cpu_TYPE_X86)
    {
            [cpu appendString:@"x86 "];
             // check for subtype ...

    } else if (type == cpu_TYPE_ARM)
    {
            [cpu appendString:@"ARM"];
            switch(subtype)
            {
                    case cpu_SUBTYPE_ARM_V7:
                    [cpu appendString:@"V7"];
                    break;
                    // ...
            }
    }
    return [cpu autorelease];
}
原文链接:https://www.f2er.com/iOS/336305.html

猜你在找的iOS相关文章