If i would need change only text string it will simple, but How can I change images or xib files (which are for each localisation)?
code which set localisation:
[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObjects:@"Ukrainian", @"English", nil] forKey:@"AppleLanguages"];
or
[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObjects: @"English", @"Ukrainian", nil] forKey:@"AppleLanguages"];
(if I have done this code, and app was closed so next time when app start it use all resources which set for selected language)
How can I do the same but without restarting app?
I found many examples, but these show how work with text, but how work with another resources, and how can I their update (for current select language)?
examples: Change iOS app's language on the fly