我想将视图放入UIScrollView。
Price* p = _entity.prices[0];
ItemPriceCell *cell = [[ItemPriceCell alloc] initWithFrame:CGRectZero];
cell.priceLabel.attributedText = [Helper stylePriceLabel:p.priceString withFont:[UIFont fontWithName:@"OpenSans-Semibold" size:34]];
cell.priceLabel.textColor = [Helper color:self.shop.currentTheme.options.itemPriceTextColor];
cell.priceNameLabel.text = [NSString stringWithFormat:@"%@",[p definition]];
cell.priceNameLabel.textColor = [Helper color:self.shop.currentTheme.options.itemDetailTextColor];
[self.horizontalScrollView addSubview:cell];
现在可以看到价格单元。但是,如果我添加此代码:
[cell mas_updateConstraints:^(MASConstraintMaker *make) {
make.width.equalTo(@200);
make.height.equalTo(@50);
make.top.equalTo(@0);
make.left.equalTo(@0);
make.right.equalTo(@0);
make.bottom.equalTo(@0);
}];
隐藏价格视图。我哪里错了?
答案 0 :(得分:0)
以下代码块中的问题是top
,left
,bottom
和right
约束。
[cell mas_updateConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(@0);
make.left.equalTo(@0);
make.right.equalTo(@0);
make.bottom.equalTo(@0);
}];
在这里,您将顶部约束设为0,即单元格的上边框为0.同样,视图的左,右和底部边框为0.您只添加了width
和你的细胞height
。
根据您在此处给出的限制,iOS自动布局系统将单元格框架设为cell.superview.bounds
。由此,你的细胞不应该被隐藏。它应该占据整个视图。
随意建议编辑以使其更好。如果有什么不清楚或你得到不同的结果,请随意评论:)
答案 1 :(得分:0)
更快的选项:
[cell mas_updateConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(@0);
}];