Created
May 30, 2011 12:36
-
-
Save shannoga/998848 to your computer and use it in GitHub Desktop.
Detect user languish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+(NSString*)currentLang{ | |
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; | |
NSArray *languages = [defaults objectForKey:@"AppleLanguages"]; | |
return [languages objectAtIndex:0]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment