Objective-C学习之UIDevice、NSBundle、NSLocale

54 篇文章 51 订阅 ¥9.90 ¥99.00

UIDevice

       UIDevice提供了多种属性、类函数及状态通知,帮助我们全方位了解设备状况。从检测电池电量到定位设备与临近感应,UIDevice所做的工作就是为应用程序提供用户及设备的一些信息。UIDevice类还能够收集关于设备的各种具体细节,例如机型及iOS版本等。其中大部分属性都对开发工作具有积极的辅助作用。下面的代码简单的使用UIDevice获取手机属性。

//设备相关信息的获取  
 NSString *strName = [[UIDevice currentDevice] name];  
 NSLog(@"设备名称:%@", strName);//e.g. "My iPhone"  

 NSString *strId = [[UIDevice currentDevice] uniqueIdentifier];  
 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  

NSBundle

       bundle是一个目录,其中包含了程序会使用到的资源. 这些资源包含了如图像,声音,编译好的代码,nib文件(用户也会把bundle称为plug-in). 对应bundle,cocoa提供了类NSBundle.一个应用程序看上去和其他文件没有什么区别. 但是实际上它是一个包含了nib文件,编译代码,以及其他资源的目录. 我们把这个目录叫做程序的main bundle。通过这个路径可以获取到应用的信息,例如应用名、版本号等。

//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);  

NSLocale

       NSLocale可以获取用户的本地化信息设置,例如货币类型,国家,语言,数字,日期格式的格式化,提供正确的地理位置显示等等。下面的代码获取机器当前语言和国家代码。

//Getting the User’s Language  
   NSArray *languageArray = [NSLocale preferredLanguages];  
   NSString *language = [languageArray objectAtIndex:0];  
   NSLog(@"语言:%@", language);//en  

   NSLocale *locale = [NSLocale currentLocale];  
   NSString *country = [locale localeIdentifier];  
   NSLog(@"国家:%@", country); //en_US  
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值