Dodaję UIView do UIScrollView
i ograniczam go do wypełnienia przestrzeni poziomej, z wyjątkiem niektórych marginesów. Mój wizualny ograniczenie wygląda następująco:UIView nieprzestrzeganie ograniczeń autolayout w UIScrollView
@"|-16-[theLineView]-16-|"
Zrobiłem widok jeden piksel wysoki więc pojawi się ona jako linia, i umieścił go między dwoma etykiet tekstowych:
@"V:[someOtherStuff]-[aTextLabel]-[theLineView]-[anotherLabel]"
Jestem jednak znalezienie że szerokość linii rozszerza się tylko do szerokości najdłuższej etykiety nad/pod nią.
Dlaczego miałoby to być?
P.S Znam ten http://developer.apple.com/library/ios/#technotes/tn2154/_index.html
Kod
Oto całość kodu widok kontrolera z projektu badawczego, który wykazuje ten problem na karcie SIM iPad.
- (void)viewDidLoad
{ [bardzo 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}]];
}
Czy Twój 1px 'UIView' ma jakieś inne ograniczenia? – Yazid
Czy [widok] jest taki sam, jak [widokLinia]? Czy masz ustawione opcje wyrównania w parametrze options? – rdelmar
Brak innych ograniczeń ani nic w parametrze opcji. Zobaczę, czy uda mi się odtworzyć w projekcie testowym. Tak, te widoki są takie same, poprawiono fragment. –