tags:

views:

211

answers:

1

how to find system locale through code for iphone

+1  A: 
[NSLocale currentLocale];
[NSLocale autoupdatingCurrentLocale];
mahboudz
It gives me English(India) and i need en
Try using `- (id)objectForKey:(id)key` for `key = NSLocaleLanguageCode`
mahboudz