how to dynamically switch between different localized storyboards objective-c
问题 I've inherited a project that already uses this approach to dynamically switch from one localization to another when it comes to strings translation. The gist is straight forward.. based the on the language chosen by the user.. identify the localized strings file (ie /path/to/app/Resources/Storyboard/en.lproj ) and then use something like NSLocalizedStringFromTableInBundle(text, @"", [LanguageGateway currentLocalizedBundle], nil) to localize the strings. So far so good. The problem happens