1.设备相关信息的获取
NSString *strName = [[UIDevice currentDevice] name];
NSLog(@"设备名称:%@", strName);//e.g. "My iPhone"
NSString *strId = [[UIDevice currentDevice] identifierForVendor].UUIDString;
NSLog(@"设备唯一标识:%@", strId);//UUID,5.0后不可用
NSString *strSysName = [[UIDevice currentDevice] systemName];
NSLog(@"系统名称:%@", strSysName);// e.g. @"iOS"
NSString *strSysVersion = [[UIDevice currentDevice] systemVersion];
NSLog(@"系统版本号:%@", strSysVersion);// e.g. @"4.0"
NSString *strModel = [[UIDevice currentDevice] model];
NSLog(@"设备模式:%@", strModel);// e.g. @"iPhone", @"iPod touch"
NSString *strLocModel = [[UIDevice currentDevice] localizedModel];
NSLog(@"本地设备模式:%@", strLocModel);// localized version of model
//输出:设备相关信息的获取
2016-08-08 17:11:45.499 宏定义的黑魔法[4576:233857] 设备唯一标识:F56E4E26-259C-4726-933D-99CF2BFB45EA
2016-08-08 17:11:45.499 宏定义的黑魔法[4576:233857] 系统名称:iPhone OS
2016-08-08 17:11:45.499 宏定义的黑魔法[4576:233857] 系统版本号:9.3
2016-08-08 17:11:45.500 宏定义的黑魔法[4576:233857] 设备模式:iPhone
2016-08-08 17:11:45.500 宏定义的黑魔法[4576:233857] 本地设备模式:iPhone
2.app应用相关信息的获取
NSDictionary *dicInfo = [[NSBundle mainBundle] infoDictionary];
//CFShow(dicInfo);
NSString *strAppName = [dicInfo objectForKey:@"CFBundleDisplayName"];
NSLog(@"App应用名称:%@", strAppName);
NSString *strAppVersion = [dicInfo objectForKey:@"CFBundleShortVersionString"];
NSLog(@"App应用版本:%@", strAppVersion);
NSString *strAppBuild = [dicInfo objectForKey:@"CFBundleVersion"];
NSLog(@"App应用Build版本:%@", strAppBuild);
//输出:App应用相关信息的获取
2016-08-08 17:11:45.500 宏定义的黑魔法[4576:233857] App应用名称:(null)
2016-08-08 17:11:45.500 宏定义的黑魔法[4576:233857] App应用版本:1.0
2016-08-08 17:11:45.500 宏定义的黑魔法[4576:233857] App应用Build版本:1
3.获取用户的本地化信息设置,例如货币类型,国家,语言,数字,日期格式的格式化,提供正确的地理位置显示等等
NSArray *languageArray = [NSLocale preferredLanguages];
NSString *language = [languageArray objectAtIndex:0];
NSLog(@"语言:%@", language);//en
NSLocale *locale = [NSLocale currentLocale];
NSString *country = [locale localeIdentifier];
NSLog(@"国家:%@", country); //en_US
//输出:获取用户的本地化信息设置
2016-08-08 17:11:45.501 宏定义的黑魔法[4576:233857] 语言:en-US
2016-08-08 17:11:45.501 宏定义的黑魔法[4576:233857] 国家:en_US
4.获取系统版本号,目的:用于判断是否为最新版本,进行更新提示
// 最新的版本保存到info.plist文件
NSString *curVersion = [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"];
// 获取上一次保存的最新版本号
NSString *lastVersion = [[NSUserDefaults standardUserDefaults] objectForKey:@"vision"];