Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用objective-c进行本地化和应用程序,想知道是否有办法检测手机的语言。更具体地说,当最终用户转到“设置”->“通用”->“国际”->“语言”时,选择了一种语言,因此想知道为 iOS 设备(iPhone、iPod 或 iPad)设置的语言。
通过这种方式,我可以编写一个“if”语句,以便根据设备语言执行某些代码。
谢谢你。
NSString * language = [[NSLocale preferredLanguages] objectAtIndex:0];
看看这个:Getting current device language in iOS?