The task is to load the corresponding background image on the view, depending on the localization language selected. That is, in -viewDidLoad controller you need to issue a scheme
if (выбран русский) { [self setBackgroundImage: [UIImage imageWithImage:@"ru.png"]]; } else if (выбран английский) { [self setBackgroundImage: [UIImage imageWithImage:@"en.png"]]; }
That is how to find out the meaning of the chosen language?