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

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

时间:2015-06-30 18:34:42      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://blog.csdn.net/shaobo8910/article/details/46696905

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