[[[NSUserDefaults standardUserDefaults] objectForKey:@"AppleLanguages"] objectAtIndex:0]];
This writes to NSString the current country code so that you can discover the current language.
Or use this to get the current language and region:
NSString *locale = [[NSLocale currentLocale] localeIdentifier];
source share