码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-06-24 13:19:35      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:current   add   sina   targe   word   htm   tde   tle   20px   

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(程序版本)等

标签:current   add   sina   targe   word   htm   tde   tle   20px   

原文地址:http://www.cnblogs.com/lytwajue/p/7073051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!