首页 > 其他 > 详细

获取设备号

时间:2016-06-16 17:39:50      阅读:252      评论:0      收藏:0      [点我收藏+]

 

    //获取设备id号
    UIDevice *device = [UIDevice currentDevice];//创建设备对象
    NSString *deviceUID = [[NSString alloc] initWithString:device.identifierForVendor.UUIDString];
    
    NSLog(@"**********************************************************************************************************************************%@**************************************************************************************************************************************************************************************",deviceUID); // 输出设备id
    
    
    NSString *strmode = [UIDevice currentDevice].model;//模型
    NSLog(@"%@",strmode);
    NSString *strname = [UIDevice currentDevice].name;//设备名称设备主人可以更换
    NSLog(@"%@",strname);
    NSString *strlocalizedModel = [UIDevice currentDevice].localizedModel;//模型的当地版本
    NSLog(@"%@",strlocalizedModel);
    NSString *strsystemName = [UIDevice currentDevice].systemName;//设备名称
    NSLog(@"%@",strsystemName);
    NSString *strsystemVersion = [UIDevice currentDevice].systemVersion;//版本号
    NSLog(@"%@",strsystemVersion);
    

    NSUUID      *stridentifierForVendor =[UIDevice currentDevice].identifierForVendor;
    NSLog(@"%@",stridentifierForVendor);//uuid唯一标示
    UIDeviceOrientation strorientation = [UIDevice currentDevice].orientation;//设备方向
    NSLog(@"%ld",(long)strorientation);
    
    BOOL zbatteryMonitoringEnabled = [UIDevice currentDevice].batteryMonitoringEnabled;//电池监控启用
    NSLog(@"%hhd",zbatteryMonitoringEnabled);
    
    float abatteryLevel  = [UIDevice currentDevice].batteryLevel;//设备电池状态,电池级
    NSLog(@"%f",abatteryLevel);
    

 

获取设备号

原文:http://www.cnblogs.com/OIMM/p/5591556.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!