zoukankan      html  css  js  c++  java
  • 获取设备号

        //获取设备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);
        
  • 相关阅读:
    编写Music类
    Double-checked locking and the Singleton pattern--双重检查加锁失效原因剖析
    C语言中,数组名作为参数传递给函数时,退化为指针
    蘑菇街笔试
    动态规划--股市买入卖出时间点选择问题
    Java 查看死锁的方法
    linux中shell变量$#,$@,$0,$1,$2的含义解释
    Spring中bean的配置
    为什么要使用连接池
    Hadoop Bloom filter应用示例
  • 原文地址:https://www.cnblogs.com/OIMM/p/5591556.html
Copyright © 2011-2022 走看看