There are some features within my application that are supposed to be based on the language settings of the device where it\'s running.
I want to get the actual language
Try this:
NSUserDefaults* userDefaults = [NSUserDefaults standardUserDefaults]; NSArray* arrayLanguages = [userDefaults objectForKey:@"AppleLanguages"]; NSString* currentLanguage = [arrayLanguages objectAtIndex:0];