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

IOS之获取设备的信息

时间:2015-03-03 17:57:55      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

  1. NSLog(@"globallyUniqueString=%@",[[NSProcessInfo processInfo] globallyUniqueString]);//全球唯一标识  
  2. NSLog(@"uniqueIdentifie=%@",[UIDevice currentDevice].uniqueIdentifier);//唯一的标识 可用于区分设备  
  3. NSLog(@"name=%@",[UIDevice currentDevice].name);//设备的名称  李四的 iPad、王五的 iPad .。。  
  4. NSLog(@"systemName=%@",[UIDevice currentDevice].systemName);//系统的名称  iPhone OS  
  5. NSLog(@"systemVersion=%@",[UIDevice currentDevice].systemVersion);//设备系统的版本号  5.1.1、6.0  
  6. NSLog(@"model=%@",[UIDevice currentDevice].model);//设备的型号   iPad、iphone、ipod touch。。。  
  7. NSLog(@"localizedModel=%@",[UIDevice currentDevice].localizedModel);//本地化的模型  iPad  
  8. NSLog(@"batteryLevel=%lf",[UIDevice currentDevice].batteryLevel);//电池电量

IOS之获取设备的信息

标签:

原文地址:http://www.cnblogs.com/changxs/p/4311307.html

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