Hello,
I have two viewControllers in my application.
I have hadded the translations for both xibs.
The first one is the "default", it shows up in the right language (french).
Clicking on a button I show the second one using:
Code:
app = [[LocationController alloc] initWithNibName:nil bundle:nil];
app.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:app animated:YES];
The second viewController is in english even if I have translated it in the same way as the first one.
Can you tell me what's wrong?
thanks.