[NSLocale currentLocale] countryCode & languageCode


My language setting in the "Settings" is "Simplified Chinese" and of course i am in China,but when i used the codes below to get the languageCode i got "en".
Did I do anything wrong or there is a bug?

Code Block objc
NSString *countryCode = [NSLocale currentLocale].countryCode; //@"CN"
NSString *languageCode = [NSLocale currentLocale].languageCode; //@"en"

Is your app localised for Simplified Chinese?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
[NSLocale currentLocale] countryCode & languageCode
 
 
Q