Próbuję znaleźć najczystszy sposób dostosowania wysokości mojego tableTeamViewView, który sam jest tylko widokiem z etykietą wielowierszową. Wygląda na to, że autolayout powinien być w stanie dość łatwo obliczyć wysokość.UIView-Encapsulated-Layout-Height: Niepoprawne ograniczenia w tableHeaderView
utworzyć etykietę tak:
DDInsetLabelView *header = [[DDInsetLabelView alloc] initWithFrame:CGRectZero];
header.insets = UIEdgeInsetsMake(10.f, 10.f, 10.f, 10.f);
header.label.text = [NSString stringWithFormat:@"%@\n%@", self.categoryTitle, self.subcategoryTitle];
header.label.numberOfLines = 0;
header.label.textAlignment = NSTextAlignmentCenter;
self.tableView.tableHeaderView = header;
obrębie klasy etykiet obsłużyć układ tak:
- (void)updateConstraints {
[super updateConstraints];
NSDictionary *metrics = @{@"t": @(self.insets.top), @"l": @(self.insets.left),
@"b": @(self.insets.bottom), @"r": @(self.insets.right)};
NSDictionary *views = NSDictionaryOfVariableBindings(_label);
self.label.translatesAutoresizingMaskIntoConstraints = NO;
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-(t)-[_label]-(b)-|" options:0 metrics:metrics views:views]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-(l)-[_label]-(r)-|" options:0 metrics:metrics views:views]];
}
- (void)layoutSubviews {
[super layoutSubviews];
self.label.preferredMaxLayoutWidth = self.label.frame.size.width;
[super layoutSubviews];
}
Teraz tutaj jest jak ja obliczaniu wysokości dla widoku nagłówka w moim kontrolerze:
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
UIView *header = self.tableView.tableHeaderView;
NSLayoutConstraint *headerWidthConstraint = [NSLayoutConstraint
constraintWithItem:header attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual
toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0f constant:header.frame.size.width];
[header addConstraint:headerWidthConstraint];
CGFloat height = [header systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
[header removeConstraint:headerWidthConstraint];
header.frame = CGRectMake(0, 0, header.frame.size.width, height);
header.translatesAutoresizingMaskIntoConstraints = YES;
self.tableView.tableHeaderView = header;
}
Wygląda na to, że działa to dobrze wizualnie, ale wciąż dostaję Błąd llowing w konsoli:
Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x7fb2e5bb7540 'UIView-Encapsulated-Layout-Height' V:[DDInsetLabelView:0x7fb2e5b53250(0)]>",
"<NSLayoutConstraint:0x7fb2e5bb84b0 V:|-(10)-[UILabel:0x7fb2e5b65200'Custom Box\nCustomize with...'] (Names: '|':DDInsetLabelView:0x7fb2e5b53250)>",
"<NSLayoutConstraint:0x7fb2e5bb8500 V:[UILabel:0x7fb2e5b65200'Custom Box\nCustomize with...']-(10)-| (Names: '|':DDInsetLabelView:0x7fb2e5b53250)>"
)
jestem przy założeniu, że UIView-Encapsulated-Layout-Height
reprezentuje pewną wartość obliczoną wewnętrznie wysokość za cel. Jak mogę uniknąć tego ostrzeżenia podczas używania autolayout do obliczenia wysokości mojego nagłówka?
Mają ten sam problem, ale z bardziej prostego podejścia. Korzystając z Xcode 6.3.2, mogę po prostu przypisać mój automatyczny układ, widok oparty na Xib do właściwości 'tableHeaderView'. Wysokość i szerokość po prostu działają. Jednakże, gdy przechodzę do innego widoku, a następnie zwracam, otrzymuję to samo ostrzeżenie NSLayoutConstraint, a 'tableHeaderView' zmienia wysokość bez powodu ... szczególnie na 0. :( –