美文网首页
获取设备类型及系统版本

获取设备类型及系统版本

作者: 机器猫的百宝袋 | 来源:发表于2015-10-14 10:24 被阅读35次

    import "sys/utsname.h"

    /*!

    • get the information of the device and system
    • "i386" simulator
    • "iPod1,1" iPod Touch
    • "iPhone1,1" iPhone
    • "iPhone1,2" iPhone 3G
    • "iPhone2,1" iPhone 3GS
    • "iPad1,1" iPad
    • "iPhone3,1" iPhone 4
    • @return null
      */
      —(void)getDeviceAndOSInfo
      {
      //here use sys/utsname.h
      struct utsname systemInfo;
      uname(&systemInfo);
      //get the device model and the system version
      NSLog(@"%@", [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding]);
      NSLog(@"%@", [[UIDevice currentDevice] systemVersion]);
      }

    相关文章

      网友评论

          本文标题:获取设备类型及系统版本

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