2つの言語(アラビア語/英語)のストーリーボードを使用するiPhoneアプリケーションがあります。言語のiPhone設定を変更せずに、アラビア語のローカリゼーションストーリーボードから英語のストーリーボードに切り替える方法(実行時)
質問する
5720 次
1 に答える
8
私はあなたが次のコードとしてそれを行うことができることを解決しました:
UIStoryboard *storyBoard;
if ([language isEqualToString:@"ar"]) {
lan = [[NSLocale preferredLanguages] objectAtIndex:0];
storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone5Arabic" bundle:bnd];
}
else if([language isEqualToString:@"en"]) {
NSLog(@"DDD ");
lan = [[NSLocale preferredLanguages] objectAtIndex:20];
storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone5English" bundle:bnd];
}
NSBundle *bnd = [NSBundle bundleWithPath:[[NSBundle mainBundle]pathForResource:lan ofType:@"lproj" ]];
UIViewController *initViewController = [storyBoard instantiateInitialViewController];
[self.window setRootViewController:initViewController];
于 2013-01-12T05:54:58.497 に答える