使用 2 个不同的故事板,一个用于 LTR,一个用于 RTL(非自动布局)
Posted
技术标签:
【中文标题】使用 2 个不同的故事板,一个用于 LTR,一个用于 RTL(非自动布局)【英文标题】:Use 2 different Storyboards, one for LTR and one for RTL (NOT AUTO LAYOUT) 【发布时间】:2014-12-21 11:34:38 【问题描述】:我的应用现在支持 RTL 语言,我想添加对 LTR 语言的支持。
我创建了额外的storyboard
文件并设置对齐方式(所有标签、按钮、图片等)以支持LTR。
现在,我如何知道用户使用 LTR 语言以及我应该如何告诉应用使用 LTR 故事板?
我尝试使用自动布局 - 没有成功。
所以我决定这样做,有什么想法吗?
【问题讨论】:
【参考方案1】:你可以在你的应用代理中试试这个:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];
UIStoryboard *storyboard;
// Determine the text direction and load the Storyboard accordingly
if ([UIApplication sharedApplication].userInterfaceLayoutDirection == UIUserInterfaceLayoutDirectionRightToLeft)
storyboard = [UIStoryboard storyboardWithName:@"RTL" bundle:nil];
else
storyboard = [UIStoryboard storyboardWithName:@"LTR" bundle:nil];
// Get the initial view controller
UIViewController *viewController = [storyboard instantiateViewControllerWithIdentifier:@"InitialViewController"];
self.window.rootViewController = viewController;
[self.window makeKeyAndVisible];
return YES;
【讨论】:
以上是关于使用 2 个不同的故事板,一个用于 LTR,一个用于 RTL(非自动布局)的主要内容,如果未能解决你的问题,请参考以下文章