博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS 获取设备基本信息
阅读量:6283 次
发布时间:2019-06-22

本文共 3423 字,大约阅读时间需要 11 分钟。

hot3.png

    NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]; 

    NSLog(@"手机序列号: %@",identifierNumber); 

    //手机别名: 用户定义的名称  

    NSString* userPhoneName = [[UIDevice currentDevice] name]; 

    NSLog(@"手机别名: %@", userPhoneName); 

    //设备名称  

    NSString* deviceName = [[UIDevice currentDevice] systemName]; 

    NSLog(@"设备名称: %@",deviceName ); 

    //手机系统版本  

    NSString* phoneVersion = [[UIDevice currentDevice] systemVersion]; 

    NSLog(@"手机系统版本: %@", phoneVersion); 

    //手机型号  

    NSString* phoneModel = [[UIDevice currentDevice] model]; 

    NSLog(@"手机型号: %@",phoneModel ); 

    //地方型号  (国际化区域名称)  

    NSString* localPhoneModel = [[UIDevice currentDevice] localizedModel]; 

    NSLog(@"国际化区域名称: %@",localPhoneModel ); 

     

    NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; 

    // 当前应用名称  

    NSString *appCurName = [infoDictionary objectForKey:@"CFBundleDisplayName"]; 

    NSLog(@"当前应用名称:%@",appCurName); 

    // 当前应用软件版本  比如:1.0.1  

    NSString *appCurVersion = [infoDictionary objectForKey:@"CFBundleShortVersionString"]; 

    NSLog(@"当前应用软件版本:%@",appCurVersion); 

    // 当前应用版本号码   int类型  

    NSString *appCurVersionNum = [infoDictionary objectForKey:@"CFBundleVersion"]; 

    NSLog(@"当前应用版本号码:%@",appCurVersionNum); 

    //手机序列号    NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier];    NSLog(@"手机序列号: %@",identifierNumber);  

      //手机别名: 用户定义的名称    NSString* userPhoneName = [[UIDevice currentDevice] name];    NSLog(@"手机别名: %@", userPhoneName); 

      //设备名称    NSString* deviceName = [[UIDevice currentDevice] systemName];    NSLog(@"设备名称: %@",deviceName );   

     //手机系统版本    NSString* phoneVersion = [[UIDevice currentDevice] systemVersion];    NSLog(@"手机系统版本: %@", phoneVersion);   

     //手机型号    NSString* phoneModel = [[UIDevice currentDevice] model];    NSLog(@"手机型号: %@",phoneModel );   

     //地方型号  (国际化区域名称)    NSString* localPhoneModel = [[UIDevice currentDevice] localizedModel];   NSLog(@"国际化区域名称: %@",localPhoneModel );     

      NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];    

    // 当前应用名称    NSString *appCurName = [infoDictionary objectForKey:@"CFBundleDisplayName"];    NSLog(@"当前应用名称:%@",appCurName);    

    // 当前应用软件版本  比如:1.0.1    NSString *appCurVersion = [infoDictionary objectForKey:@"CFBundleShortVersionString"];    NSLog(@"当前应用软件版本:%@",appCurVersion);   

     // 当前应用版本号码   int类型    NSString *appCurVersionNum = [infoDictionary objectForKey:@"CFBundleVersion"];   

     NSLog(@"当前应用版本号码:%@",appCurVersionNum);

 

结果:

[plain]2012-10-19 14:07:47.622 myDemo[5779:707] 手机序列号: 6685c75e34104be0b04c6ceb72985dc381f0f746 2012-10-19 14:07:47.624 myDemo[5779:707] 手机别名: “spring sky”的 iPod 2012-10-19 14:07:47.627 myDemo[5779:707] 设备名称: iPhone OS 2012-10-19 14:07:47.629 myDemo[5779:707] 手机系统版本: 5.1.1 2012-10-19 14:07:47.641 myDemo[5779:707] 手机型号: iPod touch 2012-10-19 14:07:47.642 myDemo[5779:707] 国际化区域名称: iPod touch 2012-10-19 14:07:47.643 myDemo[5779:707] 当前应用名称:myDemo 2012-10-19 14:07:47.645 myDemo[5779:707] 当前应用软件版本:1.0.1 2012-10-19 14:07:47.646 myDemo[5779:707] 当前应用版本号码:101 

2012-10-19 14:07:47.622 myDemo[5779:707] 手机序列号: 6685c75e34104be0b04c6ceb72985dc381f0f7462012-10-19 14:07:47.624 myDemo[5779:707] 手机别名: “spring sky”的 iPod2012-10-19 14:07:47.627 myDemo[5779:707] 设备名称: iPhone OS2012-10-19 14:07:47.629 myDemo[5779:707] 手机系统版本: 5.1.12012-10-19 14:07:47.641 myDemo[5779:707] 手机型号: iPod touch2012-10-19 14:07:47.642 myDemo[5779:707] 国际化区域名称: iPod touch2012-10-19 14:07:47.643 myDemo[5779:707] 当前应用名称:myDemo2012-10-19 14:07:47.645 myDemo[5779:707] 当前应用软件版本:1.0.12012-10-19 14:07:47.646 myDemo[5779:707] 当前应用版本号码:101

转载于:https://my.oschina.net/201003674/blog/288309

你可能感兴趣的文章
将图片转成base64字符串并在JSP页面显示的Java代码
查看>>
js 面试题
查看>>
sqoop数据迁移(基于Hadoop和关系数据库服务器之间传送数据)
查看>>
腾讯云下安装 nodejs + 实现 Nginx 反向代理
查看>>
Javascript 中的 Array 操作
查看>>
java中包容易出现的错误及权限问题
查看>>
AngularJS之初级Route【一】(六)
查看>>
服务器硬件问题整理的一点总结
查看>>
SAP S/4HANA Cloud: Revolutionizing the Next Generation of Cloud ERP
查看>>
Mellanox公司计划利用系统芯片提升存储产品速度
查看>>
白帽子守护网络安全,高薪酬成大学生就业首选!
查看>>
ARM想将芯片装进人类大脑 降低能耗是一大挑战
查看>>
Oracle数据库的备份方法
查看>>
Selenium 自动登录考勤系统
查看>>
关于如何以编程的方式执行TestNG
查看>>
智能照明造福千家万户 家居智能不再是梦
查看>>
物联网如何跳出“看起来很美”?
查看>>
浅谈MySQL 数据库性能优化
查看>>
《UNIX/Linux 系统管理技术手册(第四版)》——1.10 其他的权威文档
查看>>
灵动空间 创享生活
查看>>