码迷,mamicode.com
首页 > 移动开发 > 详细

[转载]iOS开发:获取设备信息

时间:2016-01-03 00:29:03      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

开发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;    //系统识别码

原文地址:http://www.jianshu.com/p/20b5ed0cf2d3

[转载]iOS开发:获取设备信息

标签:

原文地址:http://www.cnblogs.com/yuen/p/5095553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!