以下是代码段
self.xyzIcon = [UIImage mobileImageNamed:@"icon_xyz"];
self.xyzIconImageView = [UIImageView new];
[self.contentView addSubview:self.xyzIconImageView];
[self.xyzIconImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(weakSelf.contentView.mas_left);
make.width.equalTo(@(weakSelf.xyzIcon.size.width));
make.height.equalTo(@(weakSelf.xyzIcon.size.height));
}];
在视图控制器中,它使用tableview
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if (!self.prototypeCell) {
self.prototypeCell = [UITableViewCell new];
}
[self.prototypeCell configure];
CGFloat heightCalculated = [self.prototypeCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height + 1.f;
NSLog(@"Height calculated %f", heightCalculated);
returns heightCalculated;
}
这始终返回1.f.请帮忙,我不确定我在这里做错了什么。
答案 0 :(得分:30)
问题是你的约束不是细胞高度的决定因素。您尚未将图像视图的顶部或图像视图的底部固定到其超级视图(contentView
)。因此,当您致电systemLayoutSizeFittingSize
时,单元格内部没有内部任何东西可以防止它一直崩溃到零。
换句话说:systemLayoutSizeFittingSize
的工作方式是将某些内部约束视为支撑最小(或最大)尺寸的支柱。你没有支柱。