I've come across with the problem where language settings is in app, that user can change it at anytime, but..
when i change it with using this code e.g
[[NSUserDefaults standardUserDefaults] setObject:@[@"de", @"en", @"it"] forKey:@"AppleLanguages"];
it do not effect until restarting the application becuase bundle is already loaded in appDelegate, right?
so i tried this solution
https://stackoverflow.com/a/20257557/2839104
but already loaded viewControllers do not effected, so...
how can i update app language without restarting it and without changing NSLog
usages with something else? is there any way for it?
I would appreciate any comments.