iOS-获取Model(设备型号)Version(设备版本)app(程序版本)等

Posted lytwajue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS-获取Model(设备型号)Version(设备版本)app(程序版本)等相关的知识,希望对你有一定的参考价值。

IOS-获取Model(设备型号)、Version(设备版本)、app(程序版本)等

    NSLog(@"uniqueIdentifier: %@", [[UIDevice currentDevice] uniqueIdentifier]);
    NSLog(@"name: %@", [[UIDevice currentDevice] name]);
    NSLog(@"systemName: %@", [[UIDevice currentDevice] systemName]);
    NSLog(@"systemVersion: %@", [[UIDevice currentDevice] systemVersion]);
    NSLog(@"model: %@", [[UIDevice currentDevice] model]);
    NSLog(@"localizedModel: %@", [[UIDevice currentDevice] localizedModel]);

 

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

 CFShow(infoDictionary);

// app名称

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

 // app版本号

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

 // app build版本号

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

以上是关于iOS-获取Model(设备型号)Version(设备版本)app(程序版本)等的主要内容,如果未能解决你的问题,请参考以下文章

在模拟器上运行时获取设备型号名称?

微信小程序 --- 获取设备信息

获取iOS设备的型号

iOS获取设备型号

获取手机设备号及型号的宏

iOS获取设备型号设备类型等信息