i am newbie here and New to iOS development, i want to get language of Particular country from NSLocale
in iOs it i Possible or not?
i try this code but it give me all language but i want particular country language
NSArray *test = [NSLocale availableLocaleIdentifiers];
for (int i = 0; i < [test count]; i++) {
NSLocale *locale = [NSLocale localeWithLocaleIdentifier:[test objectAtIndex:i]];
NSString *language = [locale displayNameForKey:NSLocaleIdentifier value:[locale localeIdentifier]];
NSLog(@"Langaugae %@",language);
}
i mean i want to get All Indian Language and any Other Country Language. Thank You...