iOS NSLocale相关方法
Posted itdali
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS NSLocale相关方法相关的知识,希望对你有一定的参考价值。
ios NSLocale相关的一些方法
1.获取所有本地化语言标示符
[NSLocale availableLocaleIdentifiers];
2.获取当前系统语言标识符
[[NSLocale currentLocale] localeIdentifier];
3.获取本地化对象的具体内容
NSLocale *local = [NSLocale currentLocale];
4.获取用户语言偏好设置列表
[NSLocale preferredLanguages];
5.根据本地标识符创建NSLocale
NSLocale *local = [[NSLocale alloc] initWithLocaleIdentifier:@"zh-Hans_US"];
6.监听用户本地化设置的消息
// 在localChangedHandler方法中做操作即可.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(localChangedHandler) name:NSCurrentLocaleDidChangeNotification object:nil];
以上是关于iOS NSLocale相关方法的主要内容,如果未能解决你的问题,请参考以下文章