I\'d like to show the current language that the device UI is using. What code would I use?
I want this as an NSString in fully spelled out format. (Not
NSString
Even there's a better way to get current device language. Let's try it by below code -
NSLog(@"Current Language - %@", [[NSLocale preferredLanguages] firstObject]);
Suggested by Abizern on here