在 iOS 上设计 3 行对话框的方法 - 多语言可用
Posted
技术标签:
【中文标题】在 iOS 上设计 3 行对话框的方法 - 多语言可用【英文标题】:Way to design a Dialog with 3 rows on iOS - multi language usable 【发布时间】:2013-02-12 21:56:24 【问题描述】:我正在尝试在 ios 中创建一个包含 3 个标签和 3 个文本字段的视图(普通单视图)。
该应用程序应该能够用于多语言。
我想有以下布局:
Label | TextField
Label | TextField
Label | TextField
TextFields 应该从相同的位置开始。 (见图)
但文本字段的长度应取决于标签中文本的长度。 (我想最小化空间,你可以在图片上看到英文。
简而言之,英文版式的标签和文本字段之间的间距应与德文版相同。
使用自动布局的最佳方法是什么?
【问题讨论】:
您可能需要考虑使用模态视图而不是警报视图。 我想用普通的视图控制器 【参考方案1】:每行的第一个: 调整标签大小以适合文本。 然后在标签和文本字段之间放置一个水平间距。
然后在所有左边缘应对齐的文本字段上添加更高优先级的约束。
这里有两行代码:
- (void)viewDidLoad
[super viewDidLoad];
//create labels and text fields for row 1
UILabel *label0,*label1;
UITextField *textField0,*textField1;
label0 = [[UILabel alloc] init];
label0.backgroundColor=[UIColor redColor];
[self.view addSubview:label0];
textField0 = [[UITextField alloc] init];
textField0.backgroundColor=[UIColor greenColor];
[self.view addSubview:textField0];
[self.view setTranslatesAutoresizingMaskIntoConstraints:NO];
[label0 setTranslatesAutoresizingMaskIntoConstraints:NO];
[textField0 setTranslatesAutoresizingMaskIntoConstraints:NO];
//*************************************************************
//layout row 1
NSArray *arr;
NSDictionary *dict = NSDictionaryOfVariableBindings(label0,textField0);
NSLayoutConstraint *constraint;
//label sized to fit text (default) and standard spacing between label and textField
arr = [NSLayoutConstraint constraintsWithVisualFormat:@"|-[label0]-[textField0(100)]"
options:0
metrics:nil
views:dict];
[self.view addConstraints:arr];
//vertical constraints
arr = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[label0]"
options:0
metrics:nil
views:dict];
[self.view addConstraints:arr];
arr = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[textField0]"
options:0
metrics:nil
views:dict];
[self.view addConstraints:arr];
//*************************************************************
//create label and textfield for row2
label1 = [[UILabel alloc] init];
label1.backgroundColor=[UIColor redColor];
[self.view addSubview:label1];
textField1 = [[UITextField alloc] init];
textField1.backgroundColor=[UIColor greenColor];
[self.view addSubview:textField1];
[self.view setTranslatesAutoresizingMaskIntoConstraints:NO];
[label1 setTranslatesAutoresizingMaskIntoConstraints:NO];
[textField1 setTranslatesAutoresizingMaskIntoConstraints:NO];
//*************************************************************
//layout row 2
dict = NSDictionaryOfVariableBindings(label0,textField0,label1,textField1);
//label sized to fit text (default) and standard spacing between label and textField
arr = [NSLayoutConstraint constraintsWithVisualFormat:@"|-[label1]-[textField1(100)]"
options:0
metrics:nil
views:dict];
[self.view addConstraints:arr];
//vertical constraints
arr = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[label0]-[label1]"
options:0
metrics:nil
views:dict];
[self.view addConstraints:arr];
arr = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[textField0]-[textField1]"
options:0
metrics:nil
views:dict];
[self.view addConstraints:arr];
//*************************************************************
//line up the left edges of the text fields and make it a higher priority to override spacing
constraint = [NSLayoutConstraint constraintWithItem:textField0 attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:textField1 attribute:NSLayoutAttributeLeft multiplier:1 constant:0];
constraint.priority=UILayoutPriorityDefaultHigh;
[self.view addConstraint:constraint];
//*************************************************************
//Setup some text
//label0.text=@"Label0";
label0.text=@"Some long textasdfasdfadsfasfdasf";
textField0.text = @"textField0";
//label1.text=@"Some long text";
label1.text=@"Label1";
textField1.text = @"textField1";
[self.view setNeedsLayout];
【讨论】:
值得注意的是,他还可以在 xib 中的 Interface Builder 中指定相同的约束... 我尝试在 Interface Builder 中设置它并且它可以工作。感谢您的帮助以上是关于在 iOS 上设计 3 行对话框的方法 - 多语言可用的主要内容,如果未能解决你的问题,请参考以下文章
iOS多语言(国际化)开发(跟随系统 + APP内手动设置)