I would like to change the current locale programmatically. I tried searching in stackoverflow and found this way.
[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
But my question is how to set it to the currentLocale, but [NSLocale currentLocale] returns the currentLocale. But how do I set it?
Need some guidance on this.