ビューを 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);
}];
価格表示は非表示です。どこが間違っていますか?