私はUIScrollView
にUIViewを追加し、いくつかの余白を除いて、それが水平なスペースを埋めるように制約します。私の視覚的な制約は、次のようになります。それは行として表示されますので、私は高いビュー1つのピクセルを行ったUIViewがUIScrollViewのオートレイアウト制約に従わない
@"|-16-[theLineView]-16-|"
、および2つのテキストラベルの間に置か:しかし
@"V:[someOtherStuff]-[aTextLabel]-[theLineView]-[anotherLabel]"
、私が発見していますラインの幅は、ラベルの上/下の最長ラベルの幅まで広がっているだけです。
これはなぜでしょうか?私はここでは、このhttp://developer.apple.com/library/ios/#technotes/tn2154/_index.html
コード
を読んだ
P.Sは、iPadのシムでこの問題を示すテストプロジェクトからのビューコントローラコードの全体です。
- (void)viewDidLoad
{[スーパーのviewDidLoad]。
self.scrollView = [[UIScrollView alloc] init];
self.scrollView.translatesAutoresizingMaskIntoConstraints = NO;
self.scrollView.backgroundColor = [UIColor greenColor];
[self.view addSubview:self.scrollView];
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"|[scrollView]|"
options:0
metrics:0
views:@{@"scrollView":self.scrollView}]];
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[scrollView]|"
options:0
metrics:0
views:@{@"scrollView":self.scrollView}]];
self.line1 = [[UIView alloc] init];
self.line2 = [[UIView alloc] init];
self.label1 = [[UILabel alloc] init];
self.label2 = [[UILabel alloc] init];
self.label3 = [[UILabel alloc] init];
for (UILabel *label in @[self.label1, self.label2, self.label3])
{
label.text = @"I am a label and I am long enough that I can be multiline on an iphone but single on ipad";
}
for (UIView *view in @[self.line1, self.line2, self.label1, self.label2, self.label3])
{
view.translatesAutoresizingMaskIntoConstraints = NO;
view.backgroundColor = [UIColor redColor];
[self.scrollView addSubview:view];
}
//horizontal layout - all views/labels should fill the horizontal space expect for margin
for (UIView *view in @[self.line1, self.line2, self.label1, self.label2, self.label3])
{
NSArray *constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"|-16-[view]-16-|"
options:0
metrics:0
views:@{@"view":view}];
[self.scrollView addConstraints:constraints];
}
//vertical layout - stack em up
[self.scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[lab1]-[line1(==1)]-[lab2]-[line2(==1)]-[lab3]-|"
options:0
metrics:0
views:@{@"lab1":self.label1, @"line1":self.line1, @"lab2":self.label2, @"line2":self.line2, @"lab3":self.label3}]];
}
あなたの1px UIViewに他の制約がありますか? – Yazid
[view]は[theLineView]と同じビューですか? optionsパラメータにアライメントオプションを設定していますか? – rdelmar
optionsパラメータに他の制約や何もありません。テストプロジェクトで再現できるかどうかを確認します。はい、これらのビューは同じで、スニペットを修正しました。 –