I'm using localization for storyboard by auto layout for UI and localized strings for strings (I have one storyboard and add localization for strings only)
I have one project with two targets.
One of them should run only in English and the second should always run in Hebrew.
I tried to add a hack to force the application to be in Hebrew by adding this line to the main file:
NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:[NSArray arrayWithObject:@"he"] forKey:@"AppleLanguages"];
[defaults synchronize];
But, this solution works only after I run the application twice.
I found another solution,
but it's not working at all.
Can you help me?
Thanks...