博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设备版本,设备号,APP版本,APP名称获取
阅读量:6358 次
发布时间:2019-06-23

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

//获取设备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(@"uuid唯一标示 == %@",stridentifierForVendor);//uuid唯一标示    UIDeviceOrientation strorientation = [UIDevice currentDevice].orientation;//设备方向    NSLog(@"设备方向 == %ld",(long)strorientation);            NSString *executableFile = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleExecutableKey];    //获取项目名称    NSLog(@"获取项目名称 == %@",executableFile);    NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleVersionKey];      //获取项目版本号    NSLog(@"获取项目版本号 == %@",version);            NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];    // app名称    NSString *app_Name = [infoDictionary objectForKey:@"CFBundleDisplayName"];    NSLog(@"app名称 == %@",app_Name);    // app版本    NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"];    NSLog(@"app版本 == %@",app_Version);    // app build版本    NSString *app_build = [infoDictionary objectForKey:@"CFBundleVersion"];    NSLog(@"app build版本 == %@",app_build);

 

转载于:https://www.cnblogs.com/OIMM/p/5593046.html

你可能感兴趣的文章
Mozilla 释出更新修复中间人攻击漏洞
查看>>
思科表态反对网络中立
查看>>
《HTML5+CSS3网页设计入门必读》——1.5 利用多种Web浏览器执行测试
查看>>
Velocity官方指南-容器
查看>>
国家为何如此重视石墨烯?
查看>>
《Python和Pygame游戏开发指南》——1.14 配套网站上的更多信息
查看>>
利用mybatis查询两级树形菜单
查看>>
《慕客网:IOS基础入门之Foundation框架初体验》学习笔记 <一>
查看>>
Spring声明式事务管理之二:核心接口API
查看>>
LNMP环境安装(二)
查看>>
MFC对话框编程-图片控件
查看>>
nodejs启动webserver服务
查看>>
小偷被抓叫嚣:我不偷警察没饭吃
查看>>
python初学—-实现excel里面读数据进行排序
查看>>
用户体验升级后 “谁行谁上”让百度Q4财报更有底气
查看>>
直播相关学习链接
查看>>
使用RPM包工具和源码包编译安装Linux应用程序
查看>>
VoIP——开启免费通话新时代的先锋
查看>>
Linux下rsync的用法
查看>>
apache虚拟主机、日志轮询、日志统计、去版本优化
查看>>