《ios获取操作系统版本.docx》由会员分享,可在线阅读,更多相关《ios获取操作系统版本.docx(12页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、ios获取操作系统版本对于ios操作系统想必大家都有所了解。那么我们要如何才能知道ios操作系统的版本信息呢?下面由学习啦我为大家整理了ios获取操作系统版本的方法,希望对大家有帮助。获取ios操作系统版本的方法之UIDevicecurrentDevice获取iphone的系统信息使用UIDevicecurrentDevice,信息如下: UIDevicecurrentDevicesystemName:系统名称,如iPhoneOS UIDevicecurrentDevicesystemVersion:系统版本,如4.2.1 UIDevicecurrentDevicemodel:Themodel
2、ofthedevice,如iPhone或者iPodtouch UIDevicecurrentDeviceuniqueIdentifier:设备的唯一标识号,deviceID UIDevicecurrentDevicename:设备的名称,如张三的iPhone UIDevicecurrentDevicelocalizedModel:Themodelofthedeviceasalocalizedstring,类似modelNSDictionary*infoDictionary=NSBundlemainBundleinfoDictionary;CFShow(infoDictionary);/app名
3、称NSString*app_Name=infoDictionaryobjectForKey:CFBundleDisplayName/app版本NSString*app_Version=infoDictionaryobjectForKey:CFBundleShortVersionString/appbuild版本NSString*app_build=infoDictionaryobjectForKey:CFBundleVersion/手机序列号NSString*identifierNumber=UIDevicecurrentDeviceuniqueIdentifier;NSLog(手机序列号:%
4、,identifierNumber);/手机别名:用户定义的名称NSString*userPhoneName=UIDevicecurrentDevicename;NSLog(手机别名:%,userPhoneName);/设备名称NSString*deviceName=UIDevicecurrentDevicesystemName;NSLog(设备名称:%,deviceName);/手机系统版本NSString*phoneVersion=UIDevicecurrentDevicesystemVersion;NSLog(手机系统版本:%,phoneVersion);/手机型号NSString*ph
5、oneModel=UIDevicecurrentDevicemodel;NSLog(手机型号:%,phoneModel);/地方型号(国际化区域名称)NSString*localPhoneModel=UIDevicecurrentDevicelocalizedModel;NSLog(国际化区域名称:%,localPhoneModel);NSDictionary*infoDictionary=NSBundlemainBundleinfoDictionary;/当前应用名称NSString*appCurName=infoDictionaryobjectForKey:CFBundleDisplayN
6、ameNSLog(当前应用名称:%,appCurName);/当前应用软件版本比方:1.0.1NSString*appCurVersion=infoDictionaryobjectForKey:CFBundleShortVersionStringNSLog(当前应用软件版本:%,appCurVersion);/当前应用版本号码int类型NSString*appCurVersionNum=infoDictionaryobjectForKey:CFBundleVersionNSLog(当前应用版本号码:%,appCurVersionNum);扩展资料:ios怎样获取手机型号等信息 java/手机序
7、列号NSString*identifierNumber=UIDevicecurrentDeviceuniqueIdentifier;NSLog(手机序列号:%,identifierNumber);/手机别名:用户定义的名称NSString*userPhoneName=UIDevicecurrentDevicename;NSLog(手机别名:%,userPhoneName);/设备名称NSString*deviceName=UIDevicecurrentDevicesystemName;NSLog(设备名称:%,deviceName);/手机系统版本NSString*phoneVersion=U
8、IDevicecurrentDevicesystemVersion;NSLog(手机系统版本:%,phoneVersion);/手机型号NSString*phoneModel=UIDevicecurrentDevicemodel;NSLog(手机型号:%,phoneModel);/地方型号(国际化区域名称)NSString*localPhoneModel=UIDevicecurrentDevicelocalizedModel;NSLog(国际化区域名称:%,localPhoneModel);NSDictionary*infoDictionary=NSBundlemainBundleinfoDi
9、ctionary;/当前应用名称NSString*appCurName=infoDictionaryobjectForKey:CFBundleDisplayNameNSLog(当前应用名称:%,appCurName);/当前应用软件版本比方:1.0.1NSString*appCurVersion=infoDictionaryobjectForKey:CFBundleShortVersionStringNSLog(当前应用软件版本:%,appCurVersion);/当前应用版本号码int类型NSString*appCurVersionNum=infoDictionaryobjectForKey
10、:CFBundleVersionNSLog(当前应用版本号码:%,appCurVersionNum);/手机序列号NSString*identifierNumber=UIDevicecurrentDeviceuniqueIdentifier;NSLog(手机序列号:%,identifierNumber);/手机别名:用户定义的名称NSString*userPhoneName=UIDevicecurrentDevicename;NSLog(手机别名:%,userPhoneName);/设备名称NSString*deviceName=UIDevicecurrentDevicesystemName;
11、NSLog(设备名称:%,deviceName);/手机系统版本NSString*phoneVersion=UIDevicecurrentDevicesystemVersion;NSLog(手机系统版本:%,phoneVersion);/手机型号NSString*phoneModel=UIDevicecurrentDevicemodel;NSLog(手机型号:%,phoneModel);/地方型号(国际化区域名称)NSString*localPhoneModel=UIDevicecurrentDevicelocalizedModel;NSLog(国际化区域名称:%,localPhoneMode
12、l);NSDictionary*infoDictionary=NSBundlemainBundleinfoDictionary;/当前应用名称NSString*appCurName=infoDictionaryobjectForKey:CFBundleDisplayNameNSLog(当前应用名称:%,appCurName);/当前应用软件版本比方:1.0.1NSString*appCurVersion=infoDictionaryobjectForKey:CFBundleShortVersionStringNSLog(当前应用软件版本:%,appCurVersion);/当前应用版本号码in
13、t类型NSString*appCurVersionNum=infoDictionaryobjectForKey:CFBundleVersionNSLog(当前应用版本号码:%,appCurVersionNum);结果: plain2021-10-1914:07:47.622myDemo5779:707手机序列号:6685c75e34104be0b04c6ceb72985dc381f0f7462021-10-1914:07:47.624myDemo5779:707手机别名:springsky的iPod2021-10-1914:07:47.627myDemo5779:707设备名称:iPhoneO
14、S2021-10-1914:07:47.629myDemo5779:707手机系统版本:5.1.12021-10-1914:07:47.641myDemo5779:707手机型号:iPodtouch2021-10-1914:07:47.642myDemo5779:707国际化区域名称:iPodtouch2021-10-1914:07:47.643myDemo5779:707当前应用名称:myDemo2021-10-1914:07:47.645myDemo5779:707当前应用软件版本:1.0.12021-10-1914:07:47.646myDemo5779:707当前应用版本号码:1012
15、021-10-1914:07:47.622myDemo5779:707手机序列号:6685c75e34104be0b04c6ceb72985dc381f0f7462021-10-1914:07:47.624myDemo5779:707手机别名:springsky的iPod2021-10-1914:07:47.627myDemo5779:707设备名称:iPhoneOS2021-10-1914:07:47.629myDemo5779:707手机系统版本:5.1.12021-10-1914:07:47.641myDemo5779:707手机型号:iPodtouch2021-10-1914:07:47.642myDemo5779:707国际化区域名称:iPodtouch2021-10-1914:07:47.643myDemo5779:707当前应用名称:myDemo2021-10-1914:07:47.645myDemo5779:707当前应用软件版本:1.0.12021-10-1914:07:47.646myDemo5779:707当前应用版本号码:101
限制150内