iOS开发:获取设备信息

作者: 明天不用上课 | 来源:发表于2015-12-25 11:24 被阅读1441次

    开发iOS平台的应用的时候,可以获取iOS设备的设备信息,包括设备的名称,设备的机型,设备的iOS版本等等。设备信息主要来自 UIDevice 类。

    代码如下:

    UIDevice *currentDevice = [UIDevice currentDevice];
    NSString *strName = currentDevice.name;    //设备名称
    NSString *strModel = currentDevice.model;    //设备类别
    NSString *strLocalizedModel = currentDevice.localizedModel;    //设备本地化版本
    NSString *strSystemName = currentDevice.systemName;    //设备运行的系统
    NSString *strSystemVersion = currentDevice.systemVersion;    //当前系统版本
    NSString *strUUIDString = currentDevice.identifierForVendor.UUIDString;    //系统识别码
    

    相关文章

      网友评论

        本文标题:iOS开发:获取设备信息

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